-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_credential_representation.go
772 lines (663 loc) · 20.5 KB
/
model_credential_representation.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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
/*
Keycloak Admin REST API
This is a REST API reference for the Keycloak Admin REST API.
API version: 1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package keycloak_admin_client
import (
"encoding/json"
)
// checks if the CredentialRepresentation type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &CredentialRepresentation{}
// CredentialRepresentation struct for CredentialRepresentation
type CredentialRepresentation struct {
Id *string `json:"id,omitempty"`
Type *string `json:"type,omitempty"`
UserLabel *string `json:"userLabel,omitempty"`
CreatedDate *int64 `json:"createdDate,omitempty"`
SecretData *string `json:"secretData,omitempty"`
CredentialData *string `json:"credentialData,omitempty"`
Priority *int32 `json:"priority,omitempty"`
Value *string `json:"value,omitempty"`
Temporary *bool `json:"temporary,omitempty"`
// Deprecated
Device *string `json:"device,omitempty"`
// Deprecated
HashedSaltedValue *string `json:"hashedSaltedValue,omitempty"`
// Deprecated
Salt *string `json:"salt,omitempty"`
// Deprecated
HashIterations *int32 `json:"hashIterations,omitempty"`
// Deprecated
Counter *int32 `json:"counter,omitempty"`
// Deprecated
Algorithm *string `json:"algorithm,omitempty"`
// Deprecated
Digits *int32 `json:"digits,omitempty"`
// Deprecated
Period *int32 `json:"period,omitempty"`
// Deprecated
Config *map[string][]string `json:"config,omitempty"`
}
// NewCredentialRepresentation instantiates a new CredentialRepresentation 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 NewCredentialRepresentation() *CredentialRepresentation {
this := CredentialRepresentation{}
return &this
}
// NewCredentialRepresentationWithDefaults instantiates a new CredentialRepresentation 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 NewCredentialRepresentationWithDefaults() *CredentialRepresentation {
this := CredentialRepresentation{}
return &this
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *CredentialRepresentation) 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 *CredentialRepresentation) 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 *CredentialRepresentation) 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 *CredentialRepresentation) SetId(v string) {
o.Id = &v
}
// GetType returns the Type field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetType() string {
if o == nil || IsNil(o.Type) {
var ret string
return ret
}
return *o.Type
}
// GetTypeOk returns a tuple with the Type field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetTypeOk() (*string, bool) {
if o == nil || IsNil(o.Type) {
return nil, false
}
return o.Type, true
}
// HasType returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasType() bool {
if o != nil && !IsNil(o.Type) {
return true
}
return false
}
// SetType gets a reference to the given string and assigns it to the Type field.
func (o *CredentialRepresentation) SetType(v string) {
o.Type = &v
}
// GetUserLabel returns the UserLabel field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetUserLabel() string {
if o == nil || IsNil(o.UserLabel) {
var ret string
return ret
}
return *o.UserLabel
}
// GetUserLabelOk returns a tuple with the UserLabel field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetUserLabelOk() (*string, bool) {
if o == nil || IsNil(o.UserLabel) {
return nil, false
}
return o.UserLabel, true
}
// HasUserLabel returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasUserLabel() bool {
if o != nil && !IsNil(o.UserLabel) {
return true
}
return false
}
// SetUserLabel gets a reference to the given string and assigns it to the UserLabel field.
func (o *CredentialRepresentation) SetUserLabel(v string) {
o.UserLabel = &v
}
// GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetCreatedDate() int64 {
if o == nil || IsNil(o.CreatedDate) {
var ret int64
return ret
}
return *o.CreatedDate
}
// GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetCreatedDateOk() (*int64, bool) {
if o == nil || IsNil(o.CreatedDate) {
return nil, false
}
return o.CreatedDate, true
}
// HasCreatedDate returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasCreatedDate() bool {
if o != nil && !IsNil(o.CreatedDate) {
return true
}
return false
}
// SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.
func (o *CredentialRepresentation) SetCreatedDate(v int64) {
o.CreatedDate = &v
}
// GetSecretData returns the SecretData field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetSecretData() string {
if o == nil || IsNil(o.SecretData) {
var ret string
return ret
}
return *o.SecretData
}
// GetSecretDataOk returns a tuple with the SecretData field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetSecretDataOk() (*string, bool) {
if o == nil || IsNil(o.SecretData) {
return nil, false
}
return o.SecretData, true
}
// HasSecretData returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasSecretData() bool {
if o != nil && !IsNil(o.SecretData) {
return true
}
return false
}
// SetSecretData gets a reference to the given string and assigns it to the SecretData field.
func (o *CredentialRepresentation) SetSecretData(v string) {
o.SecretData = &v
}
// GetCredentialData returns the CredentialData field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetCredentialData() string {
if o == nil || IsNil(o.CredentialData) {
var ret string
return ret
}
return *o.CredentialData
}
// GetCredentialDataOk returns a tuple with the CredentialData field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetCredentialDataOk() (*string, bool) {
if o == nil || IsNil(o.CredentialData) {
return nil, false
}
return o.CredentialData, true
}
// HasCredentialData returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasCredentialData() bool {
if o != nil && !IsNil(o.CredentialData) {
return true
}
return false
}
// SetCredentialData gets a reference to the given string and assigns it to the CredentialData field.
func (o *CredentialRepresentation) SetCredentialData(v string) {
o.CredentialData = &v
}
// GetPriority returns the Priority field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetPriority() int32 {
if o == nil || IsNil(o.Priority) {
var ret int32
return ret
}
return *o.Priority
}
// GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetPriorityOk() (*int32, bool) {
if o == nil || IsNil(o.Priority) {
return nil, false
}
return o.Priority, true
}
// HasPriority returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasPriority() bool {
if o != nil && !IsNil(o.Priority) {
return true
}
return false
}
// SetPriority gets a reference to the given int32 and assigns it to the Priority field.
func (o *CredentialRepresentation) SetPriority(v int32) {
o.Priority = &v
}
// GetValue returns the Value field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetValue() string {
if o == nil || IsNil(o.Value) {
var ret string
return ret
}
return *o.Value
}
// GetValueOk returns a tuple with the Value field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetValueOk() (*string, bool) {
if o == nil || IsNil(o.Value) {
return nil, false
}
return o.Value, true
}
// HasValue returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasValue() bool {
if o != nil && !IsNil(o.Value) {
return true
}
return false
}
// SetValue gets a reference to the given string and assigns it to the Value field.
func (o *CredentialRepresentation) SetValue(v string) {
o.Value = &v
}
// GetTemporary returns the Temporary field value if set, zero value otherwise.
func (o *CredentialRepresentation) GetTemporary() bool {
if o == nil || IsNil(o.Temporary) {
var ret bool
return ret
}
return *o.Temporary
}
// GetTemporaryOk returns a tuple with the Temporary field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CredentialRepresentation) GetTemporaryOk() (*bool, bool) {
if o == nil || IsNil(o.Temporary) {
return nil, false
}
return o.Temporary, true
}
// HasTemporary returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasTemporary() bool {
if o != nil && !IsNil(o.Temporary) {
return true
}
return false
}
// SetTemporary gets a reference to the given bool and assigns it to the Temporary field.
func (o *CredentialRepresentation) SetTemporary(v bool) {
o.Temporary = &v
}
// GetDevice returns the Device field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetDevice() string {
if o == nil || IsNil(o.Device) {
var ret string
return ret
}
return *o.Device
}
// GetDeviceOk returns a tuple with the Device field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetDeviceOk() (*string, bool) {
if o == nil || IsNil(o.Device) {
return nil, false
}
return o.Device, true
}
// HasDevice returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasDevice() bool {
if o != nil && !IsNil(o.Device) {
return true
}
return false
}
// SetDevice gets a reference to the given string and assigns it to the Device field.
// Deprecated
func (o *CredentialRepresentation) SetDevice(v string) {
o.Device = &v
}
// GetHashedSaltedValue returns the HashedSaltedValue field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetHashedSaltedValue() string {
if o == nil || IsNil(o.HashedSaltedValue) {
var ret string
return ret
}
return *o.HashedSaltedValue
}
// GetHashedSaltedValueOk returns a tuple with the HashedSaltedValue field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetHashedSaltedValueOk() (*string, bool) {
if o == nil || IsNil(o.HashedSaltedValue) {
return nil, false
}
return o.HashedSaltedValue, true
}
// HasHashedSaltedValue returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasHashedSaltedValue() bool {
if o != nil && !IsNil(o.HashedSaltedValue) {
return true
}
return false
}
// SetHashedSaltedValue gets a reference to the given string and assigns it to the HashedSaltedValue field.
// Deprecated
func (o *CredentialRepresentation) SetHashedSaltedValue(v string) {
o.HashedSaltedValue = &v
}
// GetSalt returns the Salt field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetSalt() string {
if o == nil || IsNil(o.Salt) {
var ret string
return ret
}
return *o.Salt
}
// GetSaltOk returns a tuple with the Salt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetSaltOk() (*string, bool) {
if o == nil || IsNil(o.Salt) {
return nil, false
}
return o.Salt, true
}
// HasSalt returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasSalt() bool {
if o != nil && !IsNil(o.Salt) {
return true
}
return false
}
// SetSalt gets a reference to the given string and assigns it to the Salt field.
// Deprecated
func (o *CredentialRepresentation) SetSalt(v string) {
o.Salt = &v
}
// GetHashIterations returns the HashIterations field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetHashIterations() int32 {
if o == nil || IsNil(o.HashIterations) {
var ret int32
return ret
}
return *o.HashIterations
}
// GetHashIterationsOk returns a tuple with the HashIterations field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetHashIterationsOk() (*int32, bool) {
if o == nil || IsNil(o.HashIterations) {
return nil, false
}
return o.HashIterations, true
}
// HasHashIterations returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasHashIterations() bool {
if o != nil && !IsNil(o.HashIterations) {
return true
}
return false
}
// SetHashIterations gets a reference to the given int32 and assigns it to the HashIterations field.
// Deprecated
func (o *CredentialRepresentation) SetHashIterations(v int32) {
o.HashIterations = &v
}
// GetCounter returns the Counter field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetCounter() int32 {
if o == nil || IsNil(o.Counter) {
var ret int32
return ret
}
return *o.Counter
}
// GetCounterOk returns a tuple with the Counter field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetCounterOk() (*int32, bool) {
if o == nil || IsNil(o.Counter) {
return nil, false
}
return o.Counter, true
}
// HasCounter returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasCounter() bool {
if o != nil && !IsNil(o.Counter) {
return true
}
return false
}
// SetCounter gets a reference to the given int32 and assigns it to the Counter field.
// Deprecated
func (o *CredentialRepresentation) SetCounter(v int32) {
o.Counter = &v
}
// GetAlgorithm returns the Algorithm field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetAlgorithm() string {
if o == nil || IsNil(o.Algorithm) {
var ret string
return ret
}
return *o.Algorithm
}
// GetAlgorithmOk returns a tuple with the Algorithm field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetAlgorithmOk() (*string, bool) {
if o == nil || IsNil(o.Algorithm) {
return nil, false
}
return o.Algorithm, true
}
// HasAlgorithm returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasAlgorithm() bool {
if o != nil && !IsNil(o.Algorithm) {
return true
}
return false
}
// SetAlgorithm gets a reference to the given string and assigns it to the Algorithm field.
// Deprecated
func (o *CredentialRepresentation) SetAlgorithm(v string) {
o.Algorithm = &v
}
// GetDigits returns the Digits field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetDigits() int32 {
if o == nil || IsNil(o.Digits) {
var ret int32
return ret
}
return *o.Digits
}
// GetDigitsOk returns a tuple with the Digits field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetDigitsOk() (*int32, bool) {
if o == nil || IsNil(o.Digits) {
return nil, false
}
return o.Digits, true
}
// HasDigits returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasDigits() bool {
if o != nil && !IsNil(o.Digits) {
return true
}
return false
}
// SetDigits gets a reference to the given int32 and assigns it to the Digits field.
// Deprecated
func (o *CredentialRepresentation) SetDigits(v int32) {
o.Digits = &v
}
// GetPeriod returns the Period field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetPeriod() int32 {
if o == nil || IsNil(o.Period) {
var ret int32
return ret
}
return *o.Period
}
// GetPeriodOk returns a tuple with the Period field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetPeriodOk() (*int32, bool) {
if o == nil || IsNil(o.Period) {
return nil, false
}
return o.Period, true
}
// HasPeriod returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasPeriod() bool {
if o != nil && !IsNil(o.Period) {
return true
}
return false
}
// SetPeriod gets a reference to the given int32 and assigns it to the Period field.
// Deprecated
func (o *CredentialRepresentation) SetPeriod(v int32) {
o.Period = &v
}
// GetConfig returns the Config field value if set, zero value otherwise.
// Deprecated
func (o *CredentialRepresentation) GetConfig() map[string][]string {
if o == nil || IsNil(o.Config) {
var ret map[string][]string
return ret
}
return *o.Config
}
// GetConfigOk returns a tuple with the Config field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated
func (o *CredentialRepresentation) GetConfigOk() (*map[string][]string, bool) {
if o == nil || IsNil(o.Config) {
return nil, false
}
return o.Config, true
}
// HasConfig returns a boolean if a field has been set.
func (o *CredentialRepresentation) HasConfig() bool {
if o != nil && !IsNil(o.Config) {
return true
}
return false
}
// SetConfig gets a reference to the given map[string][]string and assigns it to the Config field.
// Deprecated
func (o *CredentialRepresentation) SetConfig(v map[string][]string) {
o.Config = &v
}
func (o CredentialRepresentation) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o CredentialRepresentation) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Id) {
toSerialize["id"] = o.Id
}
if !IsNil(o.Type) {
toSerialize["type"] = o.Type
}
if !IsNil(o.UserLabel) {
toSerialize["userLabel"] = o.UserLabel
}
if !IsNil(o.CreatedDate) {
toSerialize["createdDate"] = o.CreatedDate
}
if !IsNil(o.SecretData) {
toSerialize["secretData"] = o.SecretData
}
if !IsNil(o.CredentialData) {
toSerialize["credentialData"] = o.CredentialData
}
if !IsNil(o.Priority) {
toSerialize["priority"] = o.Priority
}
if !IsNil(o.Value) {
toSerialize["value"] = o.Value
}
if !IsNil(o.Temporary) {
toSerialize["temporary"] = o.Temporary
}
if !IsNil(o.Device) {
toSerialize["device"] = o.Device
}
if !IsNil(o.HashedSaltedValue) {
toSerialize["hashedSaltedValue"] = o.HashedSaltedValue
}
if !IsNil(o.Salt) {
toSerialize["salt"] = o.Salt
}
if !IsNil(o.HashIterations) {
toSerialize["hashIterations"] = o.HashIterations
}
if !IsNil(o.Counter) {
toSerialize["counter"] = o.Counter
}
if !IsNil(o.Algorithm) {
toSerialize["algorithm"] = o.Algorithm
}
if !IsNil(o.Digits) {
toSerialize["digits"] = o.Digits
}
if !IsNil(o.Period) {
toSerialize["period"] = o.Period
}
if !IsNil(o.Config) {
toSerialize["config"] = o.Config
}
return toSerialize, nil
}
type NullableCredentialRepresentation struct {
value *CredentialRepresentation
isSet bool
}
func (v NullableCredentialRepresentation) Get() *CredentialRepresentation {
return v.value
}
func (v *NullableCredentialRepresentation) Set(val *CredentialRepresentation) {
v.value = val
v.isSet = true
}
func (v NullableCredentialRepresentation) IsSet() bool {
return v.isSet
}
func (v *NullableCredentialRepresentation) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableCredentialRepresentation(val *CredentialRepresentation) *NullableCredentialRepresentation {
return &NullableCredentialRepresentation{value: val, isSet: true}
}
func (v NullableCredentialRepresentation) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableCredentialRepresentation) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}