-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmodel_onboarding_response.gen.go
221 lines (186 loc) · 5.7 KB
/
model_onboarding_response.gen.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
* Subset of Influx API covered by Influx CLI
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* API version: 2.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package api
import (
"encoding/json"
)
// OnboardingResponse struct for OnboardingResponse
type OnboardingResponse struct {
User *UserResponse `json:"user,omitempty" yaml:"user,omitempty"`
Org *Organization `json:"org,omitempty" yaml:"org,omitempty"`
Bucket *Bucket `json:"bucket,omitempty" yaml:"bucket,omitempty"`
Auth *Authorization `json:"auth,omitempty" yaml:"auth,omitempty"`
}
// NewOnboardingResponse instantiates a new OnboardingResponse object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewOnboardingResponse() *OnboardingResponse {
this := OnboardingResponse{}
return &this
}
// NewOnboardingResponseWithDefaults instantiates a new OnboardingResponse object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewOnboardingResponseWithDefaults() *OnboardingResponse {
this := OnboardingResponse{}
return &this
}
// GetUser returns the User field value if set, zero value otherwise.
func (o *OnboardingResponse) GetUser() UserResponse {
if o == nil || o.User == nil {
var ret UserResponse
return ret
}
return *o.User
}
// GetUserOk returns a tuple with the User field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *OnboardingResponse) GetUserOk() (*UserResponse, bool) {
if o == nil || o.User == nil {
return nil, false
}
return o.User, true
}
// HasUser returns a boolean if a field has been set.
func (o *OnboardingResponse) HasUser() bool {
if o != nil && o.User != nil {
return true
}
return false
}
// SetUser gets a reference to the given UserResponse and assigns it to the User field.
func (o *OnboardingResponse) SetUser(v UserResponse) {
o.User = &v
}
// GetOrg returns the Org field value if set, zero value otherwise.
func (o *OnboardingResponse) GetOrg() Organization {
if o == nil || o.Org == nil {
var ret Organization
return ret
}
return *o.Org
}
// GetOrgOk returns a tuple with the Org field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *OnboardingResponse) GetOrgOk() (*Organization, bool) {
if o == nil || o.Org == nil {
return nil, false
}
return o.Org, true
}
// HasOrg returns a boolean if a field has been set.
func (o *OnboardingResponse) HasOrg() bool {
if o != nil && o.Org != nil {
return true
}
return false
}
// SetOrg gets a reference to the given Organization and assigns it to the Org field.
func (o *OnboardingResponse) SetOrg(v Organization) {
o.Org = &v
}
// GetBucket returns the Bucket field value if set, zero value otherwise.
func (o *OnboardingResponse) GetBucket() Bucket {
if o == nil || o.Bucket == nil {
var ret Bucket
return ret
}
return *o.Bucket
}
// GetBucketOk returns a tuple with the Bucket field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *OnboardingResponse) GetBucketOk() (*Bucket, bool) {
if o == nil || o.Bucket == nil {
return nil, false
}
return o.Bucket, true
}
// HasBucket returns a boolean if a field has been set.
func (o *OnboardingResponse) HasBucket() bool {
if o != nil && o.Bucket != nil {
return true
}
return false
}
// SetBucket gets a reference to the given Bucket and assigns it to the Bucket field.
func (o *OnboardingResponse) SetBucket(v Bucket) {
o.Bucket = &v
}
// GetAuth returns the Auth field value if set, zero value otherwise.
func (o *OnboardingResponse) GetAuth() Authorization {
if o == nil || o.Auth == nil {
var ret Authorization
return ret
}
return *o.Auth
}
// GetAuthOk returns a tuple with the Auth field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *OnboardingResponse) GetAuthOk() (*Authorization, bool) {
if o == nil || o.Auth == nil {
return nil, false
}
return o.Auth, true
}
// HasAuth returns a boolean if a field has been set.
func (o *OnboardingResponse) HasAuth() bool {
if o != nil && o.Auth != nil {
return true
}
return false
}
// SetAuth gets a reference to the given Authorization and assigns it to the Auth field.
func (o *OnboardingResponse) SetAuth(v Authorization) {
o.Auth = &v
}
func (o OnboardingResponse) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.User != nil {
toSerialize["user"] = o.User
}
if o.Org != nil {
toSerialize["org"] = o.Org
}
if o.Bucket != nil {
toSerialize["bucket"] = o.Bucket
}
if o.Auth != nil {
toSerialize["auth"] = o.Auth
}
return json.Marshal(toSerialize)
}
type NullableOnboardingResponse struct {
value *OnboardingResponse
isSet bool
}
func (v NullableOnboardingResponse) Get() *OnboardingResponse {
return v.value
}
func (v *NullableOnboardingResponse) Set(val *OnboardingResponse) {
v.value = val
v.isSet = true
}
func (v NullableOnboardingResponse) IsSet() bool {
return v.isSet
}
func (v *NullableOnboardingResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableOnboardingResponse(val *OnboardingResponse) *NullableOnboardingResponse {
return &NullableOnboardingResponse{value: val, isSet: true}
}
func (v NullableOnboardingResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableOnboardingResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}