-
Notifications
You must be signed in to change notification settings - Fork 1
/
model_create_machine_response.go
142 lines (115 loc) · 4.03 KB
/
model_create_machine_response.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
* Mist API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* API version: 2.0.0
* Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package mist_sdk
import (
"encoding/json"
"fmt"
)
// CreateMachineResponse - struct for CreateMachineResponse
type CreateMachineResponse struct {
CreateMachineResponseOneOf *CreateMachineResponseOneOf
CreateMachineResponseOneOf1 *CreateMachineResponseOneOf1
}
// CreateMachineResponseOneOfAsCreateMachineResponse is a convenience function that returns CreateMachineResponseOneOf wrapped in CreateMachineResponse
func CreateMachineResponseOneOfAsCreateMachineResponse(v *CreateMachineResponseOneOf) CreateMachineResponse {
return CreateMachineResponse{ CreateMachineResponseOneOf: v}
}
// CreateMachineResponseOneOf1AsCreateMachineResponse is a convenience function that returns CreateMachineResponseOneOf1 wrapped in CreateMachineResponse
func CreateMachineResponseOneOf1AsCreateMachineResponse(v *CreateMachineResponseOneOf1) CreateMachineResponse {
return CreateMachineResponse{ CreateMachineResponseOneOf1: v}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *CreateMachineResponse) UnmarshalJSON(data []byte) error {
var err error
match := 0
// try to unmarshal data into CreateMachineResponseOneOf
err = json.Unmarshal(data, &dst.CreateMachineResponseOneOf)
if err == nil {
jsonCreateMachineResponseOneOf, _ := json.Marshal(dst.CreateMachineResponseOneOf)
if string(jsonCreateMachineResponseOneOf) == "{}" { // empty struct
dst.CreateMachineResponseOneOf = nil
} else {
match++
}
} else {
dst.CreateMachineResponseOneOf = nil
}
// try to unmarshal data into CreateMachineResponseOneOf1
err = json.Unmarshal(data, &dst.CreateMachineResponseOneOf1)
if err == nil {
jsonCreateMachineResponseOneOf1, _ := json.Marshal(dst.CreateMachineResponseOneOf1)
if string(jsonCreateMachineResponseOneOf1) == "{}" { // empty struct
dst.CreateMachineResponseOneOf1 = nil
} else {
match++
}
} else {
dst.CreateMachineResponseOneOf1 = nil
}
if match > 1 { // more than 1 match
// reset to nil
dst.CreateMachineResponseOneOf = nil
dst.CreateMachineResponseOneOf1 = nil
return fmt.Errorf("Data matches more than one schema in oneOf(CreateMachineResponse)")
} else if match == 1 {
return nil // exactly one match
} else { // no match
return fmt.Errorf("Data failed to match schemas in oneOf(CreateMachineResponse)")
}
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src CreateMachineResponse) MarshalJSON() ([]byte, error) {
if src.CreateMachineResponseOneOf != nil {
return json.Marshal(&src.CreateMachineResponseOneOf)
}
if src.CreateMachineResponseOneOf1 != nil {
return json.Marshal(&src.CreateMachineResponseOneOf1)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *CreateMachineResponse) GetActualInstance() (interface{}) {
if obj.CreateMachineResponseOneOf != nil {
return obj.CreateMachineResponseOneOf
}
if obj.CreateMachineResponseOneOf1 != nil {
return obj.CreateMachineResponseOneOf1
}
// all schemas are nil
return nil
}
type NullableCreateMachineResponse struct {
value *CreateMachineResponse
isSet bool
}
func (v NullableCreateMachineResponse) Get() *CreateMachineResponse {
return v.value
}
func (v *NullableCreateMachineResponse) Set(val *CreateMachineResponse) {
v.value = val
v.isSet = true
}
func (v NullableCreateMachineResponse) IsSet() bool {
return v.isSet
}
func (v *NullableCreateMachineResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableCreateMachineResponse(val *CreateMachineResponse) *NullableCreateMachineResponse {
return &NullableCreateMachineResponse{value: val, isSet: true}
}
func (v NullableCreateMachineResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableCreateMachineResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}