-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_validaterestoreoperationrequest.go
60 lines (46 loc) · 1.77 KB
/
model_validaterestoreoperationrequest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package validateoperation
import (
"encoding/json"
"fmt"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
var _ ValidateOperationRequest = ValidateRestoreOperationRequest{}
type ValidateRestoreOperationRequest struct {
RestoreRequest RestoreRequest `json:"restoreRequest"`
// Fields inherited from ValidateOperationRequest
}
var _ json.Marshaler = ValidateRestoreOperationRequest{}
func (s ValidateRestoreOperationRequest) MarshalJSON() ([]byte, error) {
type wrapper ValidateRestoreOperationRequest
wrapped := wrapper(s)
encoded, err := json.Marshal(wrapped)
if err != nil {
return nil, fmt.Errorf("marshaling ValidateRestoreOperationRequest: %+v", err)
}
var decoded map[string]interface{}
if err := json.Unmarshal(encoded, &decoded); err != nil {
return nil, fmt.Errorf("unmarshaling ValidateRestoreOperationRequest: %+v", err)
}
decoded["objectType"] = "ValidateRestoreOperationRequest"
encoded, err = json.Marshal(decoded)
if err != nil {
return nil, fmt.Errorf("re-marshaling ValidateRestoreOperationRequest: %+v", err)
}
return encoded, nil
}
var _ json.Unmarshaler = &ValidateRestoreOperationRequest{}
func (s *ValidateRestoreOperationRequest) UnmarshalJSON(bytes []byte) error {
var temp map[string]json.RawMessage
if err := json.Unmarshal(bytes, &temp); err != nil {
return fmt.Errorf("unmarshaling ValidateRestoreOperationRequest into map[string]json.RawMessage: %+v", err)
}
if v, ok := temp["restoreRequest"]; ok {
impl, err := unmarshalRestoreRequestImplementation(v)
if err != nil {
return fmt.Errorf("unmarshaling field 'RestoreRequest' for 'ValidateRestoreOperationRequest': %+v", err)
}
s.RestoreRequest = impl
}
return nil
}