-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_api_key_creation_req_web.go
508 lines (433 loc) · 13.3 KB
/
model_api_key_creation_req_web.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
/*
* Live Objects REST API Guide v2.13.3
*
* API description for Live Objects service
*
* API version: 2.13.3
* Contact: liveobjects.support@orange.com
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package liveobjects
import (
"encoding/json"
)
// ApiKeyCreationReqWeb ApiKey in Creation Request
type ApiKeyCreationReqWeb struct {
// Status
Active *bool `json:"active,omitempty"`
ClientCert *ClientCertificatesConfiguration `json:"clientCert,omitempty"`
// Short description of the key. Expected string (limited to 140 first characters)
Description *string `json:"description,omitempty"`
// Timestamp from which the key is valid
From *int64 `json:"from,omitempty"`
// Title of the key. Expected string (limited to 24 first characters)
Label *string `json:"label,omitempty"`
// identifier of the parent key to set. Expected identifier (max 24 characters)
ParentId string `json:"parentId"`
// list of API key associated roles. Basic roles are \"USER_R\", \"USER_W\", \"API_KEY_R\", \"API_KEY_W\" or any role string supplied at tenant account creation time. Expected array of role name (max all roles, role value max 255 characters)
Roles []string `json:"roles"`
Scope *ScopeApplication `json:"scope,omitempty"`
// Maximum inactivity period (ms)
SessionTtl *int64 `json:"sessionTtl,omitempty"`
// Timestamp until which the key is valid
To *int64 `json:"to,omitempty"`
// Time to live (ms)
Ttl *int64 `json:"ttl,omitempty"`
// identifier of the user owner of this key. Expected identifier (max 24 characters)
UserId *string `json:"userId,omitempty"`
}
// NewApiKeyCreationReqWeb instantiates a new ApiKeyCreationReqWeb 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 NewApiKeyCreationReqWeb(parentId string, roles []string, ) *ApiKeyCreationReqWeb {
this := ApiKeyCreationReqWeb{}
this.ParentId = parentId
this.Roles = roles
return &this
}
// NewApiKeyCreationReqWebWithDefaults instantiates a new ApiKeyCreationReqWeb 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 NewApiKeyCreationReqWebWithDefaults() *ApiKeyCreationReqWeb {
this := ApiKeyCreationReqWeb{}
return &this
}
// GetActive returns the Active field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetActive() bool {
if o == nil || o.Active == nil {
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 *ApiKeyCreationReqWeb) GetActiveOk() (*bool, bool) {
if o == nil || o.Active == nil {
return nil, false
}
return o.Active, true
}
// HasActive returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasActive() bool {
if o != nil && o.Active != nil {
return true
}
return false
}
// SetActive gets a reference to the given bool and assigns it to the Active field.
func (o *ApiKeyCreationReqWeb) SetActive(v bool) {
o.Active = &v
}
// GetClientCert returns the ClientCert field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetClientCert() ClientCertificatesConfiguration {
if o == nil || o.ClientCert == nil {
var ret ClientCertificatesConfiguration
return ret
}
return *o.ClientCert
}
// GetClientCertOk returns a tuple with the ClientCert field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetClientCertOk() (*ClientCertificatesConfiguration, bool) {
if o == nil || o.ClientCert == nil {
return nil, false
}
return o.ClientCert, true
}
// HasClientCert returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasClientCert() bool {
if o != nil && o.ClientCert != nil {
return true
}
return false
}
// SetClientCert gets a reference to the given ClientCertificatesConfiguration and assigns it to the ClientCert field.
func (o *ApiKeyCreationReqWeb) SetClientCert(v ClientCertificatesConfiguration) {
o.ClientCert = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetDescription() string {
if o == nil || o.Description == nil {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetDescriptionOk() (*string, bool) {
if o == nil || o.Description == nil {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasDescription() bool {
if o != nil && o.Description != nil {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *ApiKeyCreationReqWeb) SetDescription(v string) {
o.Description = &v
}
// GetFrom returns the From field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetFrom() int64 {
if o == nil || o.From == nil {
var ret int64
return ret
}
return *o.From
}
// GetFromOk returns a tuple with the From field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetFromOk() (*int64, bool) {
if o == nil || o.From == nil {
return nil, false
}
return o.From, true
}
// HasFrom returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasFrom() bool {
if o != nil && o.From != nil {
return true
}
return false
}
// SetFrom gets a reference to the given int64 and assigns it to the From field.
func (o *ApiKeyCreationReqWeb) SetFrom(v int64) {
o.From = &v
}
// GetLabel returns the Label field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetLabel() string {
if o == nil || o.Label == nil {
var ret string
return ret
}
return *o.Label
}
// GetLabelOk returns a tuple with the Label field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetLabelOk() (*string, bool) {
if o == nil || o.Label == nil {
return nil, false
}
return o.Label, true
}
// HasLabel returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasLabel() bool {
if o != nil && o.Label != nil {
return true
}
return false
}
// SetLabel gets a reference to the given string and assigns it to the Label field.
func (o *ApiKeyCreationReqWeb) SetLabel(v string) {
o.Label = &v
}
// GetParentId returns the ParentId field value
func (o *ApiKeyCreationReqWeb) GetParentId() string {
if o == nil {
var ret string
return ret
}
return o.ParentId
}
// GetParentIdOk returns a tuple with the ParentId field value
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetParentIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.ParentId, true
}
// SetParentId sets field value
func (o *ApiKeyCreationReqWeb) SetParentId(v string) {
o.ParentId = v
}
// GetRoles returns the Roles field value
func (o *ApiKeyCreationReqWeb) GetRoles() []string {
if o == nil {
var ret []string
return ret
}
return o.Roles
}
// GetRolesOk returns a tuple with the Roles field value
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetRolesOk() (*[]string, bool) {
if o == nil {
return nil, false
}
return &o.Roles, true
}
// SetRoles sets field value
func (o *ApiKeyCreationReqWeb) SetRoles(v []string) {
o.Roles = v
}
// GetScope returns the Scope field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetScope() ScopeApplication {
if o == nil || o.Scope == nil {
var ret ScopeApplication
return ret
}
return *o.Scope
}
// GetScopeOk returns a tuple with the Scope field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetScopeOk() (*ScopeApplication, bool) {
if o == nil || o.Scope == nil {
return nil, false
}
return o.Scope, true
}
// HasScope returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasScope() bool {
if o != nil && o.Scope != nil {
return true
}
return false
}
// SetScope gets a reference to the given ScopeApplication and assigns it to the Scope field.
func (o *ApiKeyCreationReqWeb) SetScope(v ScopeApplication) {
o.Scope = &v
}
// GetSessionTtl returns the SessionTtl field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetSessionTtl() int64 {
if o == nil || o.SessionTtl == nil {
var ret int64
return ret
}
return *o.SessionTtl
}
// GetSessionTtlOk returns a tuple with the SessionTtl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetSessionTtlOk() (*int64, bool) {
if o == nil || o.SessionTtl == nil {
return nil, false
}
return o.SessionTtl, true
}
// HasSessionTtl returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasSessionTtl() bool {
if o != nil && o.SessionTtl != nil {
return true
}
return false
}
// SetSessionTtl gets a reference to the given int64 and assigns it to the SessionTtl field.
func (o *ApiKeyCreationReqWeb) SetSessionTtl(v int64) {
o.SessionTtl = &v
}
// GetTo returns the To field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetTo() int64 {
if o == nil || o.To == nil {
var ret int64
return ret
}
return *o.To
}
// GetToOk returns a tuple with the To field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetToOk() (*int64, bool) {
if o == nil || o.To == nil {
return nil, false
}
return o.To, true
}
// HasTo returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasTo() bool {
if o != nil && o.To != nil {
return true
}
return false
}
// SetTo gets a reference to the given int64 and assigns it to the To field.
func (o *ApiKeyCreationReqWeb) SetTo(v int64) {
o.To = &v
}
// GetTtl returns the Ttl field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetTtl() int64 {
if o == nil || o.Ttl == nil {
var ret int64
return ret
}
return *o.Ttl
}
// GetTtlOk returns a tuple with the Ttl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetTtlOk() (*int64, bool) {
if o == nil || o.Ttl == nil {
return nil, false
}
return o.Ttl, true
}
// HasTtl returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasTtl() bool {
if o != nil && o.Ttl != nil {
return true
}
return false
}
// SetTtl gets a reference to the given int64 and assigns it to the Ttl field.
func (o *ApiKeyCreationReqWeb) SetTtl(v int64) {
o.Ttl = &v
}
// GetUserId returns the UserId field value if set, zero value otherwise.
func (o *ApiKeyCreationReqWeb) GetUserId() string {
if o == nil || o.UserId == nil {
var ret string
return ret
}
return *o.UserId
}
// GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKeyCreationReqWeb) GetUserIdOk() (*string, bool) {
if o == nil || o.UserId == nil {
return nil, false
}
return o.UserId, true
}
// HasUserId returns a boolean if a field has been set.
func (o *ApiKeyCreationReqWeb) HasUserId() bool {
if o != nil && o.UserId != nil {
return true
}
return false
}
// SetUserId gets a reference to the given string and assigns it to the UserId field.
func (o *ApiKeyCreationReqWeb) SetUserId(v string) {
o.UserId = &v
}
func (o ApiKeyCreationReqWeb) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Active != nil {
toSerialize["active"] = o.Active
}
if o.ClientCert != nil {
toSerialize["clientCert"] = o.ClientCert
}
if o.Description != nil {
toSerialize["description"] = o.Description
}
if o.From != nil {
toSerialize["from"] = o.From
}
if o.Label != nil {
toSerialize["label"] = o.Label
}
if true {
toSerialize["parentId"] = o.ParentId
}
if true {
toSerialize["roles"] = o.Roles
}
if o.Scope != nil {
toSerialize["scope"] = o.Scope
}
if o.SessionTtl != nil {
toSerialize["sessionTtl"] = o.SessionTtl
}
if o.To != nil {
toSerialize["to"] = o.To
}
if o.Ttl != nil {
toSerialize["ttl"] = o.Ttl
}
if o.UserId != nil {
toSerialize["userId"] = o.UserId
}
return json.Marshal(toSerialize)
}
type NullableApiKeyCreationReqWeb struct {
value *ApiKeyCreationReqWeb
isSet bool
}
func (v NullableApiKeyCreationReqWeb) Get() *ApiKeyCreationReqWeb {
return v.value
}
func (v *NullableApiKeyCreationReqWeb) Set(val *ApiKeyCreationReqWeb) {
v.value = val
v.isSet = true
}
func (v NullableApiKeyCreationReqWeb) IsSet() bool {
return v.isSet
}
func (v *NullableApiKeyCreationReqWeb) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableApiKeyCreationReqWeb(val *ApiKeyCreationReqWeb) *NullableApiKeyCreationReqWeb {
return &NullableApiKeyCreationReqWeb{value: val, isSet: true}
}
func (v NullableApiKeyCreationReqWeb) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableApiKeyCreationReqWeb) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}