-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_create_app_password_request.go
275 lines (229 loc) · 7.89 KB
/
model_create_app_password_request.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
mailcow API
mailcow is complete e-mailing solution with advanced antispam, antivirus, nice UI and API. In order to use this API you have to create a API key and add your IP address to the whitelist of allowed IPs this can be done by logging into the Mailcow UI using your admin account, then go to Configuration > Access > Edit administrator details > API. There you will find a collapsed API menu. There are two types of API keys - The read only key can only be used for all get endpoints - The read write key can be used for all endpoints
API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package mailcow
import (
"encoding/json"
)
// checks if the CreateAppPasswordRequest type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &CreateAppPasswordRequest{}
// CreateAppPasswordRequest struct for CreateAppPasswordRequest
type CreateAppPasswordRequest struct {
// is alias active or not
Active *bool `json:"active,omitempty"`
// mailbox for which the app password should be created
Username *string `json:"username,omitempty"`
// name of your app password
AppName *string `json:"app_name,omitempty"`
// your app password
AppPasswd *string `json:"app_passwd,omitempty"`
// your app password
AppPasswd2 *string `json:"app_passwd2,omitempty"`
}
// NewCreateAppPasswordRequest instantiates a new CreateAppPasswordRequest 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 NewCreateAppPasswordRequest() *CreateAppPasswordRequest {
this := CreateAppPasswordRequest{}
return &this
}
// NewCreateAppPasswordRequestWithDefaults instantiates a new CreateAppPasswordRequest 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 NewCreateAppPasswordRequestWithDefaults() *CreateAppPasswordRequest {
this := CreateAppPasswordRequest{}
return &this
}
// GetActive returns the Active field value if set, zero value otherwise.
func (o *CreateAppPasswordRequest) GetActive() bool {
if o == nil || IsNil(o.Active) {
var ret bool
return ret
}
return *o.Active
}
// GetActiveOk returns a tuple with the Active field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CreateAppPasswordRequest) GetActiveOk() (*bool, bool) {
if o == nil || IsNil(o.Active) {
return nil, false
}
return o.Active, true
}
// HasActive returns a boolean if a field has been set.
func (o *CreateAppPasswordRequest) HasActive() bool {
if o != nil && !IsNil(o.Active) {
return true
}
return false
}
// SetActive gets a reference to the given bool and assigns it to the Active field.
func (o *CreateAppPasswordRequest) SetActive(v bool) {
o.Active = &v
}
// GetUsername returns the Username field value if set, zero value otherwise.
func (o *CreateAppPasswordRequest) GetUsername() string {
if o == nil || IsNil(o.Username) {
var ret string
return ret
}
return *o.Username
}
// GetUsernameOk returns a tuple with the Username field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CreateAppPasswordRequest) GetUsernameOk() (*string, bool) {
if o == nil || IsNil(o.Username) {
return nil, false
}
return o.Username, true
}
// HasUsername returns a boolean if a field has been set.
func (o *CreateAppPasswordRequest) HasUsername() bool {
if o != nil && !IsNil(o.Username) {
return true
}
return false
}
// SetUsername gets a reference to the given string and assigns it to the Username field.
func (o *CreateAppPasswordRequest) SetUsername(v string) {
o.Username = &v
}
// GetAppName returns the AppName field value if set, zero value otherwise.
func (o *CreateAppPasswordRequest) GetAppName() string {
if o == nil || IsNil(o.AppName) {
var ret string
return ret
}
return *o.AppName
}
// GetAppNameOk returns a tuple with the AppName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CreateAppPasswordRequest) GetAppNameOk() (*string, bool) {
if o == nil || IsNil(o.AppName) {
return nil, false
}
return o.AppName, true
}
// HasAppName returns a boolean if a field has been set.
func (o *CreateAppPasswordRequest) HasAppName() bool {
if o != nil && !IsNil(o.AppName) {
return true
}
return false
}
// SetAppName gets a reference to the given string and assigns it to the AppName field.
func (o *CreateAppPasswordRequest) SetAppName(v string) {
o.AppName = &v
}
// GetAppPasswd returns the AppPasswd field value if set, zero value otherwise.
func (o *CreateAppPasswordRequest) GetAppPasswd() string {
if o == nil || IsNil(o.AppPasswd) {
var ret string
return ret
}
return *o.AppPasswd
}
// GetAppPasswdOk returns a tuple with the AppPasswd field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CreateAppPasswordRequest) GetAppPasswdOk() (*string, bool) {
if o == nil || IsNil(o.AppPasswd) {
return nil, false
}
return o.AppPasswd, true
}
// HasAppPasswd returns a boolean if a field has been set.
func (o *CreateAppPasswordRequest) HasAppPasswd() bool {
if o != nil && !IsNil(o.AppPasswd) {
return true
}
return false
}
// SetAppPasswd gets a reference to the given string and assigns it to the AppPasswd field.
func (o *CreateAppPasswordRequest) SetAppPasswd(v string) {
o.AppPasswd = &v
}
// GetAppPasswd2 returns the AppPasswd2 field value if set, zero value otherwise.
func (o *CreateAppPasswordRequest) GetAppPasswd2() string {
if o == nil || IsNil(o.AppPasswd2) {
var ret string
return ret
}
return *o.AppPasswd2
}
// GetAppPasswd2Ok returns a tuple with the AppPasswd2 field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CreateAppPasswordRequest) GetAppPasswd2Ok() (*string, bool) {
if o == nil || IsNil(o.AppPasswd2) {
return nil, false
}
return o.AppPasswd2, true
}
// HasAppPasswd2 returns a boolean if a field has been set.
func (o *CreateAppPasswordRequest) HasAppPasswd2() bool {
if o != nil && !IsNil(o.AppPasswd2) {
return true
}
return false
}
// SetAppPasswd2 gets a reference to the given string and assigns it to the AppPasswd2 field.
func (o *CreateAppPasswordRequest) SetAppPasswd2(v string) {
o.AppPasswd2 = &v
}
func (o CreateAppPasswordRequest) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o CreateAppPasswordRequest) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Active) {
toSerialize["active"] = o.Active
}
if !IsNil(o.Username) {
toSerialize["username"] = o.Username
}
if !IsNil(o.AppName) {
toSerialize["app_name"] = o.AppName
}
if !IsNil(o.AppPasswd) {
toSerialize["app_passwd"] = o.AppPasswd
}
if !IsNil(o.AppPasswd2) {
toSerialize["app_passwd2"] = o.AppPasswd2
}
return toSerialize, nil
}
type NullableCreateAppPasswordRequest struct {
value *CreateAppPasswordRequest
isSet bool
}
func (v NullableCreateAppPasswordRequest) Get() *CreateAppPasswordRequest {
return v.value
}
func (v *NullableCreateAppPasswordRequest) Set(val *CreateAppPasswordRequest) {
v.value = val
v.isSet = true
}
func (v NullableCreateAppPasswordRequest) IsSet() bool {
return v.isSet
}
func (v *NullableCreateAppPasswordRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableCreateAppPasswordRequest(val *CreateAppPasswordRequest) *NullableCreateAppPasswordRequest {
return &NullableCreateAppPasswordRequest{value: val, isSet: true}
}
func (v NullableCreateAppPasswordRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableCreateAppPasswordRequest) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}