forked from alpacahq/go-onfido-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_document_properties.go
1097 lines (938 loc) · 33.2 KB
/
model_document_properties.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
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Onfido API v3.6
The Onfido API is used to submit check requests.
API version: 3.6.0
Contact: engineering@onfido.com
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package onfido_openapi
import (
"encoding/json"
)
// checks if the DocumentProperties type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &DocumentProperties{}
// DocumentProperties struct for DocumentProperties
type DocumentProperties struct {
DateOfBirth *string `json:"date_of_birth,omitempty"`
DateOfExpiry *string `json:"date_of_expiry,omitempty"`
DocumentNumbers []DocumentPropertiesDocumentNumbersInner `json:"document_numbers,omitempty"`
DocumentType *string `json:"document_type,omitempty"`
FirstName *string `json:"first_name,omitempty"`
Gender *string `json:"gender,omitempty"`
IssuingCountry *string `json:"issuing_country,omitempty"`
LastName *string `json:"last_name,omitempty"`
Nationality *string `json:"nationality,omitempty"`
IssuingState *string `json:"issuing_state,omitempty"`
IssuingDate *string `json:"issuing_date,omitempty"`
Categorisation *string `json:"categorisation,omitempty"`
MrzLine1 *string `json:"mrz_line1,omitempty"`
MrzLine2 *string `json:"mrz_line2,omitempty"`
MrzLine3 *string `json:"mrz_line3,omitempty"`
Address *string `json:"address,omitempty"`
PlaceOfBirth *string `json:"place_of_birth,omitempty"`
SpouseName *string `json:"spouse_name,omitempty"`
WidowName *string `json:"widow_name,omitempty"`
AliasName *string `json:"alias_name,omitempty"`
IssuingAuthority *string `json:"issuing_authority,omitempty"`
RealIdCompliance *string `json:"real_id_compliance,omitempty"`
AddressLines *DocumentPropertiesAddressLines `json:"address_lines,omitempty"`
Barcode []DocumentPropertiesBarcodeInner `json:"barcode,omitempty"`
Nfc *DocumentPropertiesNfc `json:"nfc,omitempty"`
DrivingLicenceInformation *DocumentPropertiesDrivingLicenceInformation `json:"driving_licence_information,omitempty"`
DocumentClassification *DocumentPropertiesDocumentClassification `json:"document_classification,omitempty"`
ExtractedData *DocumentPropertiesExtractedData `json:"extracted_data,omitempty"`
}
// NewDocumentProperties instantiates a new DocumentProperties 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 NewDocumentProperties() *DocumentProperties {
this := DocumentProperties{}
return &this
}
// NewDocumentPropertiesWithDefaults instantiates a new DocumentProperties 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 NewDocumentPropertiesWithDefaults() *DocumentProperties {
this := DocumentProperties{}
return &this
}
// GetDateOfBirth returns the DateOfBirth field value if set, zero value otherwise.
func (o *DocumentProperties) GetDateOfBirth() string {
if o == nil || IsNil(o.DateOfBirth) {
var ret string
return ret
}
return *o.DateOfBirth
}
// GetDateOfBirthOk returns a tuple with the DateOfBirth field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetDateOfBirthOk() (*string, bool) {
if o == nil || IsNil(o.DateOfBirth) {
return nil, false
}
return o.DateOfBirth, true
}
// HasDateOfBirth returns a boolean if a field has been set.
func (o *DocumentProperties) HasDateOfBirth() bool {
if o != nil && !IsNil(o.DateOfBirth) {
return true
}
return false
}
// SetDateOfBirth gets a reference to the given string and assigns it to the DateOfBirth field.
func (o *DocumentProperties) SetDateOfBirth(v string) {
o.DateOfBirth = &v
}
// GetDateOfExpiry returns the DateOfExpiry field value if set, zero value otherwise.
func (o *DocumentProperties) GetDateOfExpiry() string {
if o == nil || IsNil(o.DateOfExpiry) {
var ret string
return ret
}
return *o.DateOfExpiry
}
// GetDateOfExpiryOk returns a tuple with the DateOfExpiry field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetDateOfExpiryOk() (*string, bool) {
if o == nil || IsNil(o.DateOfExpiry) {
return nil, false
}
return o.DateOfExpiry, true
}
// HasDateOfExpiry returns a boolean if a field has been set.
func (o *DocumentProperties) HasDateOfExpiry() bool {
if o != nil && !IsNil(o.DateOfExpiry) {
return true
}
return false
}
// SetDateOfExpiry gets a reference to the given string and assigns it to the DateOfExpiry field.
func (o *DocumentProperties) SetDateOfExpiry(v string) {
o.DateOfExpiry = &v
}
// GetDocumentNumbers returns the DocumentNumbers field value if set, zero value otherwise.
func (o *DocumentProperties) GetDocumentNumbers() []DocumentPropertiesDocumentNumbersInner {
if o == nil || IsNil(o.DocumentNumbers) {
var ret []DocumentPropertiesDocumentNumbersInner
return ret
}
return o.DocumentNumbers
}
// GetDocumentNumbersOk returns a tuple with the DocumentNumbers field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetDocumentNumbersOk() ([]DocumentPropertiesDocumentNumbersInner, bool) {
if o == nil || IsNil(o.DocumentNumbers) {
return nil, false
}
return o.DocumentNumbers, true
}
// HasDocumentNumbers returns a boolean if a field has been set.
func (o *DocumentProperties) HasDocumentNumbers() bool {
if o != nil && !IsNil(o.DocumentNumbers) {
return true
}
return false
}
// SetDocumentNumbers gets a reference to the given []DocumentPropertiesDocumentNumbersInner and assigns it to the DocumentNumbers field.
func (o *DocumentProperties) SetDocumentNumbers(v []DocumentPropertiesDocumentNumbersInner) {
o.DocumentNumbers = v
}
// GetDocumentType returns the DocumentType field value if set, zero value otherwise.
func (o *DocumentProperties) GetDocumentType() string {
if o == nil || IsNil(o.DocumentType) {
var ret string
return ret
}
return *o.DocumentType
}
// GetDocumentTypeOk returns a tuple with the DocumentType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetDocumentTypeOk() (*string, bool) {
if o == nil || IsNil(o.DocumentType) {
return nil, false
}
return o.DocumentType, true
}
// HasDocumentType returns a boolean if a field has been set.
func (o *DocumentProperties) HasDocumentType() bool {
if o != nil && !IsNil(o.DocumentType) {
return true
}
return false
}
// SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.
func (o *DocumentProperties) SetDocumentType(v string) {
o.DocumentType = &v
}
// GetFirstName returns the FirstName field value if set, zero value otherwise.
func (o *DocumentProperties) GetFirstName() string {
if o == nil || IsNil(o.FirstName) {
var ret string
return ret
}
return *o.FirstName
}
// GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetFirstNameOk() (*string, bool) {
if o == nil || IsNil(o.FirstName) {
return nil, false
}
return o.FirstName, true
}
// HasFirstName returns a boolean if a field has been set.
func (o *DocumentProperties) HasFirstName() bool {
if o != nil && !IsNil(o.FirstName) {
return true
}
return false
}
// SetFirstName gets a reference to the given string and assigns it to the FirstName field.
func (o *DocumentProperties) SetFirstName(v string) {
o.FirstName = &v
}
// GetGender returns the Gender field value if set, zero value otherwise.
func (o *DocumentProperties) GetGender() string {
if o == nil || IsNil(o.Gender) {
var ret string
return ret
}
return *o.Gender
}
// GetGenderOk returns a tuple with the Gender field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetGenderOk() (*string, bool) {
if o == nil || IsNil(o.Gender) {
return nil, false
}
return o.Gender, true
}
// HasGender returns a boolean if a field has been set.
func (o *DocumentProperties) HasGender() bool {
if o != nil && !IsNil(o.Gender) {
return true
}
return false
}
// SetGender gets a reference to the given string and assigns it to the Gender field.
func (o *DocumentProperties) SetGender(v string) {
o.Gender = &v
}
// GetIssuingCountry returns the IssuingCountry field value if set, zero value otherwise.
func (o *DocumentProperties) GetIssuingCountry() string {
if o == nil || IsNil(o.IssuingCountry) {
var ret string
return ret
}
return *o.IssuingCountry
}
// GetIssuingCountryOk returns a tuple with the IssuingCountry field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetIssuingCountryOk() (*string, bool) {
if o == nil || IsNil(o.IssuingCountry) {
return nil, false
}
return o.IssuingCountry, true
}
// HasIssuingCountry returns a boolean if a field has been set.
func (o *DocumentProperties) HasIssuingCountry() bool {
if o != nil && !IsNil(o.IssuingCountry) {
return true
}
return false
}
// SetIssuingCountry gets a reference to the given string and assigns it to the IssuingCountry field.
func (o *DocumentProperties) SetIssuingCountry(v string) {
o.IssuingCountry = &v
}
// GetLastName returns the LastName field value if set, zero value otherwise.
func (o *DocumentProperties) GetLastName() string {
if o == nil || IsNil(o.LastName) {
var ret string
return ret
}
return *o.LastName
}
// GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetLastNameOk() (*string, bool) {
if o == nil || IsNil(o.LastName) {
return nil, false
}
return o.LastName, true
}
// HasLastName returns a boolean if a field has been set.
func (o *DocumentProperties) HasLastName() bool {
if o != nil && !IsNil(o.LastName) {
return true
}
return false
}
// SetLastName gets a reference to the given string and assigns it to the LastName field.
func (o *DocumentProperties) SetLastName(v string) {
o.LastName = &v
}
// GetNationality returns the Nationality field value if set, zero value otherwise.
func (o *DocumentProperties) GetNationality() string {
if o == nil || IsNil(o.Nationality) {
var ret string
return ret
}
return *o.Nationality
}
// GetNationalityOk returns a tuple with the Nationality field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetNationalityOk() (*string, bool) {
if o == nil || IsNil(o.Nationality) {
return nil, false
}
return o.Nationality, true
}
// HasNationality returns a boolean if a field has been set.
func (o *DocumentProperties) HasNationality() bool {
if o != nil && !IsNil(o.Nationality) {
return true
}
return false
}
// SetNationality gets a reference to the given string and assigns it to the Nationality field.
func (o *DocumentProperties) SetNationality(v string) {
o.Nationality = &v
}
// GetIssuingState returns the IssuingState field value if set, zero value otherwise.
func (o *DocumentProperties) GetIssuingState() string {
if o == nil || IsNil(o.IssuingState) {
var ret string
return ret
}
return *o.IssuingState
}
// GetIssuingStateOk returns a tuple with the IssuingState field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetIssuingStateOk() (*string, bool) {
if o == nil || IsNil(o.IssuingState) {
return nil, false
}
return o.IssuingState, true
}
// HasIssuingState returns a boolean if a field has been set.
func (o *DocumentProperties) HasIssuingState() bool {
if o != nil && !IsNil(o.IssuingState) {
return true
}
return false
}
// SetIssuingState gets a reference to the given string and assigns it to the IssuingState field.
func (o *DocumentProperties) SetIssuingState(v string) {
o.IssuingState = &v
}
// GetIssuingDate returns the IssuingDate field value if set, zero value otherwise.
func (o *DocumentProperties) GetIssuingDate() string {
if o == nil || IsNil(o.IssuingDate) {
var ret string
return ret
}
return *o.IssuingDate
}
// GetIssuingDateOk returns a tuple with the IssuingDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetIssuingDateOk() (*string, bool) {
if o == nil || IsNil(o.IssuingDate) {
return nil, false
}
return o.IssuingDate, true
}
// HasIssuingDate returns a boolean if a field has been set.
func (o *DocumentProperties) HasIssuingDate() bool {
if o != nil && !IsNil(o.IssuingDate) {
return true
}
return false
}
// SetIssuingDate gets a reference to the given string and assigns it to the IssuingDate field.
func (o *DocumentProperties) SetIssuingDate(v string) {
o.IssuingDate = &v
}
// GetCategorisation returns the Categorisation field value if set, zero value otherwise.
func (o *DocumentProperties) GetCategorisation() string {
if o == nil || IsNil(o.Categorisation) {
var ret string
return ret
}
return *o.Categorisation
}
// GetCategorisationOk returns a tuple with the Categorisation field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetCategorisationOk() (*string, bool) {
if o == nil || IsNil(o.Categorisation) {
return nil, false
}
return o.Categorisation, true
}
// HasCategorisation returns a boolean if a field has been set.
func (o *DocumentProperties) HasCategorisation() bool {
if o != nil && !IsNil(o.Categorisation) {
return true
}
return false
}
// SetCategorisation gets a reference to the given string and assigns it to the Categorisation field.
func (o *DocumentProperties) SetCategorisation(v string) {
o.Categorisation = &v
}
// GetMrzLine1 returns the MrzLine1 field value if set, zero value otherwise.
func (o *DocumentProperties) GetMrzLine1() string {
if o == nil || IsNil(o.MrzLine1) {
var ret string
return ret
}
return *o.MrzLine1
}
// GetMrzLine1Ok returns a tuple with the MrzLine1 field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetMrzLine1Ok() (*string, bool) {
if o == nil || IsNil(o.MrzLine1) {
return nil, false
}
return o.MrzLine1, true
}
// HasMrzLine1 returns a boolean if a field has been set.
func (o *DocumentProperties) HasMrzLine1() bool {
if o != nil && !IsNil(o.MrzLine1) {
return true
}
return false
}
// SetMrzLine1 gets a reference to the given string and assigns it to the MrzLine1 field.
func (o *DocumentProperties) SetMrzLine1(v string) {
o.MrzLine1 = &v
}
// GetMrzLine2 returns the MrzLine2 field value if set, zero value otherwise.
func (o *DocumentProperties) GetMrzLine2() string {
if o == nil || IsNil(o.MrzLine2) {
var ret string
return ret
}
return *o.MrzLine2
}
// GetMrzLine2Ok returns a tuple with the MrzLine2 field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetMrzLine2Ok() (*string, bool) {
if o == nil || IsNil(o.MrzLine2) {
return nil, false
}
return o.MrzLine2, true
}
// HasMrzLine2 returns a boolean if a field has been set.
func (o *DocumentProperties) HasMrzLine2() bool {
if o != nil && !IsNil(o.MrzLine2) {
return true
}
return false
}
// SetMrzLine2 gets a reference to the given string and assigns it to the MrzLine2 field.
func (o *DocumentProperties) SetMrzLine2(v string) {
o.MrzLine2 = &v
}
// GetMrzLine3 returns the MrzLine3 field value if set, zero value otherwise.
func (o *DocumentProperties) GetMrzLine3() string {
if o == nil || IsNil(o.MrzLine3) {
var ret string
return ret
}
return *o.MrzLine3
}
// GetMrzLine3Ok returns a tuple with the MrzLine3 field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetMrzLine3Ok() (*string, bool) {
if o == nil || IsNil(o.MrzLine3) {
return nil, false
}
return o.MrzLine3, true
}
// HasMrzLine3 returns a boolean if a field has been set.
func (o *DocumentProperties) HasMrzLine3() bool {
if o != nil && !IsNil(o.MrzLine3) {
return true
}
return false
}
// SetMrzLine3 gets a reference to the given string and assigns it to the MrzLine3 field.
func (o *DocumentProperties) SetMrzLine3(v string) {
o.MrzLine3 = &v
}
// GetAddress returns the Address field value if set, zero value otherwise.
func (o *DocumentProperties) GetAddress() string {
if o == nil || IsNil(o.Address) {
var ret string
return ret
}
return *o.Address
}
// GetAddressOk returns a tuple with the Address field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetAddressOk() (*string, bool) {
if o == nil || IsNil(o.Address) {
return nil, false
}
return o.Address, true
}
// HasAddress returns a boolean if a field has been set.
func (o *DocumentProperties) HasAddress() bool {
if o != nil && !IsNil(o.Address) {
return true
}
return false
}
// SetAddress gets a reference to the given string and assigns it to the Address field.
func (o *DocumentProperties) SetAddress(v string) {
o.Address = &v
}
// GetPlaceOfBirth returns the PlaceOfBirth field value if set, zero value otherwise.
func (o *DocumentProperties) GetPlaceOfBirth() string {
if o == nil || IsNil(o.PlaceOfBirth) {
var ret string
return ret
}
return *o.PlaceOfBirth
}
// GetPlaceOfBirthOk returns a tuple with the PlaceOfBirth field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetPlaceOfBirthOk() (*string, bool) {
if o == nil || IsNil(o.PlaceOfBirth) {
return nil, false
}
return o.PlaceOfBirth, true
}
// HasPlaceOfBirth returns a boolean if a field has been set.
func (o *DocumentProperties) HasPlaceOfBirth() bool {
if o != nil && !IsNil(o.PlaceOfBirth) {
return true
}
return false
}
// SetPlaceOfBirth gets a reference to the given string and assigns it to the PlaceOfBirth field.
func (o *DocumentProperties) SetPlaceOfBirth(v string) {
o.PlaceOfBirth = &v
}
// GetSpouseName returns the SpouseName field value if set, zero value otherwise.
func (o *DocumentProperties) GetSpouseName() string {
if o == nil || IsNil(o.SpouseName) {
var ret string
return ret
}
return *o.SpouseName
}
// GetSpouseNameOk returns a tuple with the SpouseName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetSpouseNameOk() (*string, bool) {
if o == nil || IsNil(o.SpouseName) {
return nil, false
}
return o.SpouseName, true
}
// HasSpouseName returns a boolean if a field has been set.
func (o *DocumentProperties) HasSpouseName() bool {
if o != nil && !IsNil(o.SpouseName) {
return true
}
return false
}
// SetSpouseName gets a reference to the given string and assigns it to the SpouseName field.
func (o *DocumentProperties) SetSpouseName(v string) {
o.SpouseName = &v
}
// GetWidowName returns the WidowName field value if set, zero value otherwise.
func (o *DocumentProperties) GetWidowName() string {
if o == nil || IsNil(o.WidowName) {
var ret string
return ret
}
return *o.WidowName
}
// GetWidowNameOk returns a tuple with the WidowName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetWidowNameOk() (*string, bool) {
if o == nil || IsNil(o.WidowName) {
return nil, false
}
return o.WidowName, true
}
// HasWidowName returns a boolean if a field has been set.
func (o *DocumentProperties) HasWidowName() bool {
if o != nil && !IsNil(o.WidowName) {
return true
}
return false
}
// SetWidowName gets a reference to the given string and assigns it to the WidowName field.
func (o *DocumentProperties) SetWidowName(v string) {
o.WidowName = &v
}
// GetAliasName returns the AliasName field value if set, zero value otherwise.
func (o *DocumentProperties) GetAliasName() string {
if o == nil || IsNil(o.AliasName) {
var ret string
return ret
}
return *o.AliasName
}
// GetAliasNameOk returns a tuple with the AliasName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetAliasNameOk() (*string, bool) {
if o == nil || IsNil(o.AliasName) {
return nil, false
}
return o.AliasName, true
}
// HasAliasName returns a boolean if a field has been set.
func (o *DocumentProperties) HasAliasName() bool {
if o != nil && !IsNil(o.AliasName) {
return true
}
return false
}
// SetAliasName gets a reference to the given string and assigns it to the AliasName field.
func (o *DocumentProperties) SetAliasName(v string) {
o.AliasName = &v
}
// GetIssuingAuthority returns the IssuingAuthority field value if set, zero value otherwise.
func (o *DocumentProperties) GetIssuingAuthority() string {
if o == nil || IsNil(o.IssuingAuthority) {
var ret string
return ret
}
return *o.IssuingAuthority
}
// GetIssuingAuthorityOk returns a tuple with the IssuingAuthority field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetIssuingAuthorityOk() (*string, bool) {
if o == nil || IsNil(o.IssuingAuthority) {
return nil, false
}
return o.IssuingAuthority, true
}
// HasIssuingAuthority returns a boolean if a field has been set.
func (o *DocumentProperties) HasIssuingAuthority() bool {
if o != nil && !IsNil(o.IssuingAuthority) {
return true
}
return false
}
// SetIssuingAuthority gets a reference to the given string and assigns it to the IssuingAuthority field.
func (o *DocumentProperties) SetIssuingAuthority(v string) {
o.IssuingAuthority = &v
}
// GetRealIdCompliance returns the RealIdCompliance field value if set, zero value otherwise.
func (o *DocumentProperties) GetRealIdCompliance() string {
if o == nil || IsNil(o.RealIdCompliance) {
var ret string
return ret
}
return *o.RealIdCompliance
}
// GetRealIdComplianceOk returns a tuple with the RealIdCompliance field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetRealIdComplianceOk() (*string, bool) {
if o == nil || IsNil(o.RealIdCompliance) {
return nil, false
}
return o.RealIdCompliance, true
}
// HasRealIdCompliance returns a boolean if a field has been set.
func (o *DocumentProperties) HasRealIdCompliance() bool {
if o != nil && !IsNil(o.RealIdCompliance) {
return true
}
return false
}
// SetRealIdCompliance gets a reference to the given string and assigns it to the RealIdCompliance field.
func (o *DocumentProperties) SetRealIdCompliance(v string) {
o.RealIdCompliance = &v
}
// GetAddressLines returns the AddressLines field value if set, zero value otherwise.
func (o *DocumentProperties) GetAddressLines() DocumentPropertiesAddressLines {
if o == nil || IsNil(o.AddressLines) {
var ret DocumentPropertiesAddressLines
return ret
}
return *o.AddressLines
}
// GetAddressLinesOk returns a tuple with the AddressLines field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetAddressLinesOk() (*DocumentPropertiesAddressLines, bool) {
if o == nil || IsNil(o.AddressLines) {
return nil, false
}
return o.AddressLines, true
}
// HasAddressLines returns a boolean if a field has been set.
func (o *DocumentProperties) HasAddressLines() bool {
if o != nil && !IsNil(o.AddressLines) {
return true
}
return false
}
// SetAddressLines gets a reference to the given DocumentPropertiesAddressLines and assigns it to the AddressLines field.
func (o *DocumentProperties) SetAddressLines(v DocumentPropertiesAddressLines) {
o.AddressLines = &v
}
// GetBarcode returns the Barcode field value if set, zero value otherwise.
func (o *DocumentProperties) GetBarcode() []DocumentPropertiesBarcodeInner {
if o == nil || IsNil(o.Barcode) {
var ret []DocumentPropertiesBarcodeInner
return ret
}
return o.Barcode
}
// GetBarcodeOk returns a tuple with the Barcode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetBarcodeOk() ([]DocumentPropertiesBarcodeInner, bool) {
if o == nil || IsNil(o.Barcode) {
return nil, false
}
return o.Barcode, true
}
// HasBarcode returns a boolean if a field has been set.
func (o *DocumentProperties) HasBarcode() bool {
if o != nil && !IsNil(o.Barcode) {
return true
}
return false
}
// SetBarcode gets a reference to the given []DocumentPropertiesBarcodeInner and assigns it to the Barcode field.
func (o *DocumentProperties) SetBarcode(v []DocumentPropertiesBarcodeInner) {
o.Barcode = v
}
// GetNfc returns the Nfc field value if set, zero value otherwise.
func (o *DocumentProperties) GetNfc() DocumentPropertiesNfc {
if o == nil || IsNil(o.Nfc) {
var ret DocumentPropertiesNfc
return ret
}
return *o.Nfc
}
// GetNfcOk returns a tuple with the Nfc field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetNfcOk() (*DocumentPropertiesNfc, bool) {
if o == nil || IsNil(o.Nfc) {
return nil, false
}
return o.Nfc, true
}
// HasNfc returns a boolean if a field has been set.
func (o *DocumentProperties) HasNfc() bool {
if o != nil && !IsNil(o.Nfc) {
return true
}
return false
}
// SetNfc gets a reference to the given DocumentPropertiesNfc and assigns it to the Nfc field.
func (o *DocumentProperties) SetNfc(v DocumentPropertiesNfc) {
o.Nfc = &v
}
// GetDrivingLicenceInformation returns the DrivingLicenceInformation field value if set, zero value otherwise.
func (o *DocumentProperties) GetDrivingLicenceInformation() DocumentPropertiesDrivingLicenceInformation {
if o == nil || IsNil(o.DrivingLicenceInformation) {
var ret DocumentPropertiesDrivingLicenceInformation
return ret
}
return *o.DrivingLicenceInformation
}
// GetDrivingLicenceInformationOk returns a tuple with the DrivingLicenceInformation field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetDrivingLicenceInformationOk() (*DocumentPropertiesDrivingLicenceInformation, bool) {
if o == nil || IsNil(o.DrivingLicenceInformation) {
return nil, false
}
return o.DrivingLicenceInformation, true
}
// HasDrivingLicenceInformation returns a boolean if a field has been set.
func (o *DocumentProperties) HasDrivingLicenceInformation() bool {
if o != nil && !IsNil(o.DrivingLicenceInformation) {
return true
}
return false
}
// SetDrivingLicenceInformation gets a reference to the given DocumentPropertiesDrivingLicenceInformation and assigns it to the DrivingLicenceInformation field.
func (o *DocumentProperties) SetDrivingLicenceInformation(v DocumentPropertiesDrivingLicenceInformation) {
o.DrivingLicenceInformation = &v
}
// GetDocumentClassification returns the DocumentClassification field value if set, zero value otherwise.
func (o *DocumentProperties) GetDocumentClassification() DocumentPropertiesDocumentClassification {
if o == nil || IsNil(o.DocumentClassification) {
var ret DocumentPropertiesDocumentClassification
return ret
}
return *o.DocumentClassification
}
// GetDocumentClassificationOk returns a tuple with the DocumentClassification field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetDocumentClassificationOk() (*DocumentPropertiesDocumentClassification, bool) {
if o == nil || IsNil(o.DocumentClassification) {
return nil, false
}
return o.DocumentClassification, true
}
// HasDocumentClassification returns a boolean if a field has been set.
func (o *DocumentProperties) HasDocumentClassification() bool {
if o != nil && !IsNil(o.DocumentClassification) {
return true
}
return false
}
// SetDocumentClassification gets a reference to the given DocumentPropertiesDocumentClassification and assigns it to the DocumentClassification field.
func (o *DocumentProperties) SetDocumentClassification(v DocumentPropertiesDocumentClassification) {
o.DocumentClassification = &v
}
// GetExtractedData returns the ExtractedData field value if set, zero value otherwise.
func (o *DocumentProperties) GetExtractedData() DocumentPropertiesExtractedData {
if o == nil || IsNil(o.ExtractedData) {
var ret DocumentPropertiesExtractedData
return ret
}
return *o.ExtractedData
}
// GetExtractedDataOk returns a tuple with the ExtractedData field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DocumentProperties) GetExtractedDataOk() (*DocumentPropertiesExtractedData, bool) {
if o == nil || IsNil(o.ExtractedData) {
return nil, false
}
return o.ExtractedData, true
}
// HasExtractedData returns a boolean if a field has been set.
func (o *DocumentProperties) HasExtractedData() bool {
if o != nil && !IsNil(o.ExtractedData) {
return true
}
return false
}
// SetExtractedData gets a reference to the given DocumentPropertiesExtractedData and assigns it to the ExtractedData field.
func (o *DocumentProperties) SetExtractedData(v DocumentPropertiesExtractedData) {
o.ExtractedData = &v
}
func (o DocumentProperties) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o DocumentProperties) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.DateOfBirth) {
toSerialize["date_of_birth"] = o.DateOfBirth
}
if !IsNil(o.DateOfExpiry) {
toSerialize["date_of_expiry"] = o.DateOfExpiry
}
if !IsNil(o.DocumentNumbers) {
toSerialize["document_numbers"] = o.DocumentNumbers
}
if !IsNil(o.DocumentType) {
toSerialize["document_type"] = o.DocumentType
}
if !IsNil(o.FirstName) {
toSerialize["first_name"] = o.FirstName
}
if !IsNil(o.Gender) {
toSerialize["gender"] = o.Gender
}
if !IsNil(o.IssuingCountry) {
toSerialize["issuing_country"] = o.IssuingCountry
}
if !IsNil(o.LastName) {
toSerialize["last_name"] = o.LastName
}
if !IsNil(o.Nationality) {