-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodel_vendor_connector_mapping.go
497 lines (416 loc) · 15 KB
/
model_vendor_connector_mapping.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
/*
Identity Security Cloud Beta API
Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
API version: 3.1.0-beta
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package api_beta
import (
"encoding/json"
)
// checks if the VendorConnectorMapping type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &VendorConnectorMapping{}
// VendorConnectorMapping struct for VendorConnectorMapping
type VendorConnectorMapping struct {
// The unique identifier for the vendor-connector mapping.
Id *string `json:"id,omitempty"`
// The name of the vendor.
Vendor *string `json:"vendor,omitempty"`
// The name of the connector.
Connector *string `json:"connector,omitempty"`
// The creation timestamp of the mapping.
CreatedAt *SailPointTime `json:"createdAt,omitempty"`
// The identifier of the user who created the mapping.
CreatedBy *string `json:"createdBy,omitempty"`
UpdatedAt NullableVendorConnectorMappingUpdatedAt `json:"updatedAt,omitempty"`
UpdatedBy NullableVendorConnectorMappingUpdatedBy `json:"updatedBy,omitempty"`
DeletedAt NullableVendorConnectorMappingDeletedAt `json:"deletedAt,omitempty"`
DeletedBy NullableVendorConnectorMappingDeletedBy `json:"deletedBy,omitempty"`
AdditionalProperties map[string]interface{}
}
type _VendorConnectorMapping VendorConnectorMapping
// NewVendorConnectorMapping instantiates a new VendorConnectorMapping 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 NewVendorConnectorMapping() *VendorConnectorMapping {
this := VendorConnectorMapping{}
return &this
}
// NewVendorConnectorMappingWithDefaults instantiates a new VendorConnectorMapping 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 NewVendorConnectorMappingWithDefaults() *VendorConnectorMapping {
this := VendorConnectorMapping{}
return &this
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *VendorConnectorMapping) GetId() string {
if o == nil || IsNil(o.Id) {
var ret string
return ret
}
return *o.Id
}
// GetIdOk returns a tuple with the Id field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *VendorConnectorMapping) GetIdOk() (*string, bool) {
if o == nil || IsNil(o.Id) {
return nil, false
}
return o.Id, true
}
// HasId returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasId() bool {
if o != nil && !IsNil(o.Id) {
return true
}
return false
}
// SetId gets a reference to the given string and assigns it to the Id field.
func (o *VendorConnectorMapping) SetId(v string) {
o.Id = &v
}
// GetVendor returns the Vendor field value if set, zero value otherwise.
func (o *VendorConnectorMapping) GetVendor() string {
if o == nil || IsNil(o.Vendor) {
var ret string
return ret
}
return *o.Vendor
}
// GetVendorOk returns a tuple with the Vendor field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *VendorConnectorMapping) GetVendorOk() (*string, bool) {
if o == nil || IsNil(o.Vendor) {
return nil, false
}
return o.Vendor, true
}
// HasVendor returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasVendor() bool {
if o != nil && !IsNil(o.Vendor) {
return true
}
return false
}
// SetVendor gets a reference to the given string and assigns it to the Vendor field.
func (o *VendorConnectorMapping) SetVendor(v string) {
o.Vendor = &v
}
// GetConnector returns the Connector field value if set, zero value otherwise.
func (o *VendorConnectorMapping) GetConnector() string {
if o == nil || IsNil(o.Connector) {
var ret string
return ret
}
return *o.Connector
}
// GetConnectorOk returns a tuple with the Connector field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *VendorConnectorMapping) GetConnectorOk() (*string, bool) {
if o == nil || IsNil(o.Connector) {
return nil, false
}
return o.Connector, true
}
// HasConnector returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasConnector() bool {
if o != nil && !IsNil(o.Connector) {
return true
}
return false
}
// SetConnector gets a reference to the given string and assigns it to the Connector field.
func (o *VendorConnectorMapping) SetConnector(v string) {
o.Connector = &v
}
// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
func (o *VendorConnectorMapping) GetCreatedAt() SailPointTime {
if o == nil || IsNil(o.CreatedAt) {
var ret SailPointTime
return ret
}
return *o.CreatedAt
}
// GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *VendorConnectorMapping) GetCreatedAtOk() (*SailPointTime, bool) {
if o == nil || IsNil(o.CreatedAt) {
return nil, false
}
return o.CreatedAt, true
}
// HasCreatedAt returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasCreatedAt() bool {
if o != nil && !IsNil(o.CreatedAt) {
return true
}
return false
}
// SetCreatedAt gets a reference to the given SailPointTime and assigns it to the CreatedAt field.
func (o *VendorConnectorMapping) SetCreatedAt(v SailPointTime) {
o.CreatedAt = &v
}
// GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.
func (o *VendorConnectorMapping) GetCreatedBy() string {
if o == nil || IsNil(o.CreatedBy) {
var ret string
return ret
}
return *o.CreatedBy
}
// GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *VendorConnectorMapping) GetCreatedByOk() (*string, bool) {
if o == nil || IsNil(o.CreatedBy) {
return nil, false
}
return o.CreatedBy, true
}
// HasCreatedBy returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasCreatedBy() bool {
if o != nil && !IsNil(o.CreatedBy) {
return true
}
return false
}
// SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.
func (o *VendorConnectorMapping) SetCreatedBy(v string) {
o.CreatedBy = &v
}
// GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *VendorConnectorMapping) GetUpdatedAt() VendorConnectorMappingUpdatedAt {
if o == nil || IsNil(o.UpdatedAt.Get()) {
var ret VendorConnectorMappingUpdatedAt
return ret
}
return *o.UpdatedAt.Get()
}
// GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *VendorConnectorMapping) GetUpdatedAtOk() (*VendorConnectorMappingUpdatedAt, bool) {
if o == nil {
return nil, false
}
return o.UpdatedAt.Get(), o.UpdatedAt.IsSet()
}
// HasUpdatedAt returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasUpdatedAt() bool {
if o != nil && o.UpdatedAt.IsSet() {
return true
}
return false
}
// SetUpdatedAt gets a reference to the given NullableVendorConnectorMappingUpdatedAt and assigns it to the UpdatedAt field.
func (o *VendorConnectorMapping) SetUpdatedAt(v VendorConnectorMappingUpdatedAt) {
o.UpdatedAt.Set(&v)
}
// SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil
func (o *VendorConnectorMapping) SetUpdatedAtNil() {
o.UpdatedAt.Set(nil)
}
// UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil
func (o *VendorConnectorMapping) UnsetUpdatedAt() {
o.UpdatedAt.Unset()
}
// GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *VendorConnectorMapping) GetUpdatedBy() VendorConnectorMappingUpdatedBy {
if o == nil || IsNil(o.UpdatedBy.Get()) {
var ret VendorConnectorMappingUpdatedBy
return ret
}
return *o.UpdatedBy.Get()
}
// GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *VendorConnectorMapping) GetUpdatedByOk() (*VendorConnectorMappingUpdatedBy, bool) {
if o == nil {
return nil, false
}
return o.UpdatedBy.Get(), o.UpdatedBy.IsSet()
}
// HasUpdatedBy returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasUpdatedBy() bool {
if o != nil && o.UpdatedBy.IsSet() {
return true
}
return false
}
// SetUpdatedBy gets a reference to the given NullableVendorConnectorMappingUpdatedBy and assigns it to the UpdatedBy field.
func (o *VendorConnectorMapping) SetUpdatedBy(v VendorConnectorMappingUpdatedBy) {
o.UpdatedBy.Set(&v)
}
// SetUpdatedByNil sets the value for UpdatedBy to be an explicit nil
func (o *VendorConnectorMapping) SetUpdatedByNil() {
o.UpdatedBy.Set(nil)
}
// UnsetUpdatedBy ensures that no value is present for UpdatedBy, not even an explicit nil
func (o *VendorConnectorMapping) UnsetUpdatedBy() {
o.UpdatedBy.Unset()
}
// GetDeletedAt returns the DeletedAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *VendorConnectorMapping) GetDeletedAt() VendorConnectorMappingDeletedAt {
if o == nil || IsNil(o.DeletedAt.Get()) {
var ret VendorConnectorMappingDeletedAt
return ret
}
return *o.DeletedAt.Get()
}
// GetDeletedAtOk returns a tuple with the DeletedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *VendorConnectorMapping) GetDeletedAtOk() (*VendorConnectorMappingDeletedAt, bool) {
if o == nil {
return nil, false
}
return o.DeletedAt.Get(), o.DeletedAt.IsSet()
}
// HasDeletedAt returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasDeletedAt() bool {
if o != nil && o.DeletedAt.IsSet() {
return true
}
return false
}
// SetDeletedAt gets a reference to the given NullableVendorConnectorMappingDeletedAt and assigns it to the DeletedAt field.
func (o *VendorConnectorMapping) SetDeletedAt(v VendorConnectorMappingDeletedAt) {
o.DeletedAt.Set(&v)
}
// SetDeletedAtNil sets the value for DeletedAt to be an explicit nil
func (o *VendorConnectorMapping) SetDeletedAtNil() {
o.DeletedAt.Set(nil)
}
// UnsetDeletedAt ensures that no value is present for DeletedAt, not even an explicit nil
func (o *VendorConnectorMapping) UnsetDeletedAt() {
o.DeletedAt.Unset()
}
// GetDeletedBy returns the DeletedBy field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *VendorConnectorMapping) GetDeletedBy() VendorConnectorMappingDeletedBy {
if o == nil || IsNil(o.DeletedBy.Get()) {
var ret VendorConnectorMappingDeletedBy
return ret
}
return *o.DeletedBy.Get()
}
// GetDeletedByOk returns a tuple with the DeletedBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *VendorConnectorMapping) GetDeletedByOk() (*VendorConnectorMappingDeletedBy, bool) {
if o == nil {
return nil, false
}
return o.DeletedBy.Get(), o.DeletedBy.IsSet()
}
// HasDeletedBy returns a boolean if a field has been set.
func (o *VendorConnectorMapping) HasDeletedBy() bool {
if o != nil && o.DeletedBy.IsSet() {
return true
}
return false
}
// SetDeletedBy gets a reference to the given NullableVendorConnectorMappingDeletedBy and assigns it to the DeletedBy field.
func (o *VendorConnectorMapping) SetDeletedBy(v VendorConnectorMappingDeletedBy) {
o.DeletedBy.Set(&v)
}
// SetDeletedByNil sets the value for DeletedBy to be an explicit nil
func (o *VendorConnectorMapping) SetDeletedByNil() {
o.DeletedBy.Set(nil)
}
// UnsetDeletedBy ensures that no value is present for DeletedBy, not even an explicit nil
func (o *VendorConnectorMapping) UnsetDeletedBy() {
o.DeletedBy.Unset()
}
func (o VendorConnectorMapping) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o VendorConnectorMapping) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Id) {
toSerialize["id"] = o.Id
}
if !IsNil(o.Vendor) {
toSerialize["vendor"] = o.Vendor
}
if !IsNil(o.Connector) {
toSerialize["connector"] = o.Connector
}
if !IsNil(o.CreatedAt) {
toSerialize["createdAt"] = o.CreatedAt
}
if !IsNil(o.CreatedBy) {
toSerialize["createdBy"] = o.CreatedBy
}
if o.UpdatedAt.IsSet() {
toSerialize["updatedAt"] = o.UpdatedAt.Get()
}
if o.UpdatedBy.IsSet() {
toSerialize["updatedBy"] = o.UpdatedBy.Get()
}
if o.DeletedAt.IsSet() {
toSerialize["deletedAt"] = o.DeletedAt.Get()
}
if o.DeletedBy.IsSet() {
toSerialize["deletedBy"] = o.DeletedBy.Get()
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *VendorConnectorMapping) UnmarshalJSON(data []byte) (err error) {
varVendorConnectorMapping := _VendorConnectorMapping{}
err = json.Unmarshal(data, &varVendorConnectorMapping)
if err != nil {
return err
}
*o = VendorConnectorMapping(varVendorConnectorMapping)
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(data, &additionalProperties); err == nil {
delete(additionalProperties, "id")
delete(additionalProperties, "vendor")
delete(additionalProperties, "connector")
delete(additionalProperties, "createdAt")
delete(additionalProperties, "createdBy")
delete(additionalProperties, "updatedAt")
delete(additionalProperties, "updatedBy")
delete(additionalProperties, "deletedAt")
delete(additionalProperties, "deletedBy")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullableVendorConnectorMapping struct {
value *VendorConnectorMapping
isSet bool
}
func (v NullableVendorConnectorMapping) Get() *VendorConnectorMapping {
return v.value
}
func (v *NullableVendorConnectorMapping) Set(val *VendorConnectorMapping) {
v.value = val
v.isSet = true
}
func (v NullableVendorConnectorMapping) IsSet() bool {
return v.isSet
}
func (v *NullableVendorConnectorMapping) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableVendorConnectorMapping(val *VendorConnectorMapping) *NullableVendorConnectorMapping {
return &NullableVendorConnectorMapping{value: val, isSet: true}
}
func (v NullableVendorConnectorMapping) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableVendorConnectorMapping) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}