-
Notifications
You must be signed in to change notification settings - Fork 2
/
model_get_client_200_response.go
145 lines (119 loc) · 3.49 KB
/
model_get_client_200_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
141
142
143
144
145
/*
traQ v3
traQ v3 API
API version: 3.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package traq
import (
"encoding/json"
"fmt"
)
// GetClient200Response - struct for GetClient200Response
type GetClient200Response struct {
OAuth2Client *OAuth2Client
OAuth2ClientDetail *OAuth2ClientDetail
}
// OAuth2ClientAsGetClient200Response is a convenience function that returns OAuth2Client wrapped in GetClient200Response
func OAuth2ClientAsGetClient200Response(v *OAuth2Client) GetClient200Response {
return GetClient200Response{
OAuth2Client: v,
}
}
// OAuth2ClientDetailAsGetClient200Response is a convenience function that returns OAuth2ClientDetail wrapped in GetClient200Response
func OAuth2ClientDetailAsGetClient200Response(v *OAuth2ClientDetail) GetClient200Response {
return GetClient200Response{
OAuth2ClientDetail: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *GetClient200Response) UnmarshalJSON(data []byte) error {
var err error
match := 0
// try to unmarshal data into OAuth2Client
err = newStrictDecoder(data).Decode(&dst.OAuth2Client)
if err == nil {
jsonOAuth2Client, _ := json.Marshal(dst.OAuth2Client)
if string(jsonOAuth2Client) == "{}" { // empty struct
dst.OAuth2Client = nil
} else {
match++
}
} else {
dst.OAuth2Client = nil
}
// try to unmarshal data into OAuth2ClientDetail
err = newStrictDecoder(data).Decode(&dst.OAuth2ClientDetail)
if err == nil {
jsonOAuth2ClientDetail, _ := json.Marshal(dst.OAuth2ClientDetail)
if string(jsonOAuth2ClientDetail) == "{}" { // empty struct
dst.OAuth2ClientDetail = nil
} else {
match++
}
} else {
dst.OAuth2ClientDetail = nil
}
if match > 1 { // more than 1 match
// reset to nil
dst.OAuth2Client = nil
dst.OAuth2ClientDetail = nil
return fmt.Errorf("data matches more than one schema in oneOf(GetClient200Response)")
} else if match == 1 {
return nil // exactly one match
} else { // no match
return fmt.Errorf("data failed to match schemas in oneOf(GetClient200Response)")
}
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src GetClient200Response) MarshalJSON() ([]byte, error) {
if src.OAuth2Client != nil {
return json.Marshal(&src.OAuth2Client)
}
if src.OAuth2ClientDetail != nil {
return json.Marshal(&src.OAuth2ClientDetail)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *GetClient200Response) GetActualInstance() interface{} {
if obj == nil {
return nil
}
if obj.OAuth2Client != nil {
return obj.OAuth2Client
}
if obj.OAuth2ClientDetail != nil {
return obj.OAuth2ClientDetail
}
// all schemas are nil
return nil
}
type NullableGetClient200Response struct {
value *GetClient200Response
isSet bool
}
func (v NullableGetClient200Response) Get() *GetClient200Response {
return v.value
}
func (v *NullableGetClient200Response) Set(val *GetClient200Response) {
v.value = val
v.isSet = true
}
func (v NullableGetClient200Response) IsSet() bool {
return v.isSet
}
func (v *NullableGetClient200Response) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableGetClient200Response(val *GetClient200Response) *NullableGetClient200Response {
return &NullableGetClient200Response{value: val, isSet: true}
}
func (v NullableGetClient200Response) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableGetClient200Response) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}