-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmodel_string_map.go
1738 lines (1496 loc) · 38.4 KB
/
model_string_map.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
/*
OneSignal
A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com
API version: 1.3.0
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package onesignal
import (
"encoding/json"
)
// StringMap struct for StringMap
type StringMap struct {
// Text in English. Will be used as a fallback
En *string `json:"en,omitempty"`
// Text in Arabic.
Ar *string `json:"ar,omitempty"`
// Text in Bosnian.
Bs *string `json:"bs,omitempty"`
// Text in Bulgarian.
Bg *string `json:"bg,omitempty"`
// Text in Catalan.
Ca *string `json:"ca,omitempty"`
// Text in Chinese (Simplified).
ZhHans *string `json:"zh-Hans,omitempty"`
// Text in Chinese (Traditional).
ZhHant *string `json:"zh-Hant,omitempty"`
// Alias for zh-Hans.
Zh *string `json:"zh,omitempty"`
// Text in Croatian.
Hr *string `json:"hr,omitempty"`
// Text in Czech.
Cs *string `json:"cs,omitempty"`
// Text in Danish.
Da *string `json:"da,omitempty"`
// Text in Dutch.
Nl *string `json:"nl,omitempty"`
// Text in Estonian.
Et *string `json:"et,omitempty"`
// Text in Finnish.
Fi *string `json:"fi,omitempty"`
// Text in French.
Fr *string `json:"fr,omitempty"`
// Text in Georgian.
Ka *string `json:"ka,omitempty"`
// Text in German.
De *string `json:"de,omitempty"`
// Text in Greek.
El *string `json:"el,omitempty"`
// Text in Hindi.
Hi *string `json:"hi,omitempty"`
// Text in Hebrew.
He *string `json:"he,omitempty"`
// Text in Hungarian.
Hu *string `json:"hu,omitempty"`
// Text in Indonesian.
Id *string `json:"id,omitempty"`
// Text in Italian.
It *string `json:"it,omitempty"`
// Text in Japanese.
Ja *string `json:"ja,omitempty"`
// Text in Korean.
Ko *string `json:"ko,omitempty"`
// Text in Latvian.
Lv *string `json:"lv,omitempty"`
// Text in Lithuanian.
Lt *string `json:"lt,omitempty"`
// Text in Malay.
Ms *string `json:"ms,omitempty"`
// Text in Norwegian.
Nb *string `json:"nb,omitempty"`
// Text in Polish.
Pl *string `json:"pl,omitempty"`
// Text in Persian.
Fa *string `json:"fa,omitempty"`
// Text in Portugese.
Pt *string `json:"pt,omitempty"`
// Text in Punjabi.
Pa *string `json:"pa,omitempty"`
// Text in Romanian.
Ro *string `json:"ro,omitempty"`
// Text in Russian.
Ru *string `json:"ru,omitempty"`
// Text in Serbian.
Sr *string `json:"sr,omitempty"`
// Text in Slovak.
Sk *string `json:"sk,omitempty"`
// Text in Spanish.
Es *string `json:"es,omitempty"`
// Text in Swedish.
Sv *string `json:"sv,omitempty"`
// Text in Thai.
Th *string `json:"th,omitempty"`
// Text in Turkish.
Tr *string `json:"tr,omitempty"`
// Text in Ukrainian.
Uk *string `json:"uk,omitempty"`
// Text in Vietnamese.
Vi *string `json:"vi,omitempty"`
AdditionalProperties map[string]interface{}
}
type _StringMap StringMap
// NewStringMap instantiates a new StringMap 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 NewStringMap() *StringMap {
this := StringMap{}
return &this
}
// NewStringMapWithDefaults instantiates a new StringMap 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 NewStringMapWithDefaults() *StringMap {
this := StringMap{}
return &this
}
// GetEn returns the En field value if set, zero value otherwise.
func (o *StringMap) GetEn() string {
if o == nil || o.En == nil {
var ret string
return ret
}
return *o.En
}
// GetEnOk returns a tuple with the En field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetEnOk() (*string, bool) {
if o == nil || o.En == nil {
return nil, false
}
return o.En, true
}
// HasEn returns a boolean if a field has been set.
func (o *StringMap) HasEn() bool {
if o != nil && o.En != nil {
return true
}
return false
}
// SetEn gets a reference to the given string and assigns it to the En field.
func (o *StringMap) SetEn(v string) {
o.En = &v
}
// GetAr returns the Ar field value if set, zero value otherwise.
func (o *StringMap) GetAr() string {
if o == nil || o.Ar == nil {
var ret string
return ret
}
return *o.Ar
}
// GetArOk returns a tuple with the Ar field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetArOk() (*string, bool) {
if o == nil || o.Ar == nil {
return nil, false
}
return o.Ar, true
}
// HasAr returns a boolean if a field has been set.
func (o *StringMap) HasAr() bool {
if o != nil && o.Ar != nil {
return true
}
return false
}
// SetAr gets a reference to the given string and assigns it to the Ar field.
func (o *StringMap) SetAr(v string) {
o.Ar = &v
}
// GetBs returns the Bs field value if set, zero value otherwise.
func (o *StringMap) GetBs() string {
if o == nil || o.Bs == nil {
var ret string
return ret
}
return *o.Bs
}
// GetBsOk returns a tuple with the Bs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetBsOk() (*string, bool) {
if o == nil || o.Bs == nil {
return nil, false
}
return o.Bs, true
}
// HasBs returns a boolean if a field has been set.
func (o *StringMap) HasBs() bool {
if o != nil && o.Bs != nil {
return true
}
return false
}
// SetBs gets a reference to the given string and assigns it to the Bs field.
func (o *StringMap) SetBs(v string) {
o.Bs = &v
}
// GetBg returns the Bg field value if set, zero value otherwise.
func (o *StringMap) GetBg() string {
if o == nil || o.Bg == nil {
var ret string
return ret
}
return *o.Bg
}
// GetBgOk returns a tuple with the Bg field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetBgOk() (*string, bool) {
if o == nil || o.Bg == nil {
return nil, false
}
return o.Bg, true
}
// HasBg returns a boolean if a field has been set.
func (o *StringMap) HasBg() bool {
if o != nil && o.Bg != nil {
return true
}
return false
}
// SetBg gets a reference to the given string and assigns it to the Bg field.
func (o *StringMap) SetBg(v string) {
o.Bg = &v
}
// GetCa returns the Ca field value if set, zero value otherwise.
func (o *StringMap) GetCa() string {
if o == nil || o.Ca == nil {
var ret string
return ret
}
return *o.Ca
}
// GetCaOk returns a tuple with the Ca field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetCaOk() (*string, bool) {
if o == nil || o.Ca == nil {
return nil, false
}
return o.Ca, true
}
// HasCa returns a boolean if a field has been set.
func (o *StringMap) HasCa() bool {
if o != nil && o.Ca != nil {
return true
}
return false
}
// SetCa gets a reference to the given string and assigns it to the Ca field.
func (o *StringMap) SetCa(v string) {
o.Ca = &v
}
// GetZhHans returns the ZhHans field value if set, zero value otherwise.
func (o *StringMap) GetZhHans() string {
if o == nil || o.ZhHans == nil {
var ret string
return ret
}
return *o.ZhHans
}
// GetZhHansOk returns a tuple with the ZhHans field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetZhHansOk() (*string, bool) {
if o == nil || o.ZhHans == nil {
return nil, false
}
return o.ZhHans, true
}
// HasZhHans returns a boolean if a field has been set.
func (o *StringMap) HasZhHans() bool {
if o != nil && o.ZhHans != nil {
return true
}
return false
}
// SetZhHans gets a reference to the given string and assigns it to the ZhHans field.
func (o *StringMap) SetZhHans(v string) {
o.ZhHans = &v
}
// GetZhHant returns the ZhHant field value if set, zero value otherwise.
func (o *StringMap) GetZhHant() string {
if o == nil || o.ZhHant == nil {
var ret string
return ret
}
return *o.ZhHant
}
// GetZhHantOk returns a tuple with the ZhHant field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetZhHantOk() (*string, bool) {
if o == nil || o.ZhHant == nil {
return nil, false
}
return o.ZhHant, true
}
// HasZhHant returns a boolean if a field has been set.
func (o *StringMap) HasZhHant() bool {
if o != nil && o.ZhHant != nil {
return true
}
return false
}
// SetZhHant gets a reference to the given string and assigns it to the ZhHant field.
func (o *StringMap) SetZhHant(v string) {
o.ZhHant = &v
}
// GetZh returns the Zh field value if set, zero value otherwise.
func (o *StringMap) GetZh() string {
if o == nil || o.Zh == nil {
var ret string
return ret
}
return *o.Zh
}
// GetZhOk returns a tuple with the Zh field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetZhOk() (*string, bool) {
if o == nil || o.Zh == nil {
return nil, false
}
return o.Zh, true
}
// HasZh returns a boolean if a field has been set.
func (o *StringMap) HasZh() bool {
if o != nil && o.Zh != nil {
return true
}
return false
}
// SetZh gets a reference to the given string and assigns it to the Zh field.
func (o *StringMap) SetZh(v string) {
o.Zh = &v
}
// GetHr returns the Hr field value if set, zero value otherwise.
func (o *StringMap) GetHr() string {
if o == nil || o.Hr == nil {
var ret string
return ret
}
return *o.Hr
}
// GetHrOk returns a tuple with the Hr field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetHrOk() (*string, bool) {
if o == nil || o.Hr == nil {
return nil, false
}
return o.Hr, true
}
// HasHr returns a boolean if a field has been set.
func (o *StringMap) HasHr() bool {
if o != nil && o.Hr != nil {
return true
}
return false
}
// SetHr gets a reference to the given string and assigns it to the Hr field.
func (o *StringMap) SetHr(v string) {
o.Hr = &v
}
// GetCs returns the Cs field value if set, zero value otherwise.
func (o *StringMap) GetCs() string {
if o == nil || o.Cs == nil {
var ret string
return ret
}
return *o.Cs
}
// GetCsOk returns a tuple with the Cs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetCsOk() (*string, bool) {
if o == nil || o.Cs == nil {
return nil, false
}
return o.Cs, true
}
// HasCs returns a boolean if a field has been set.
func (o *StringMap) HasCs() bool {
if o != nil && o.Cs != nil {
return true
}
return false
}
// SetCs gets a reference to the given string and assigns it to the Cs field.
func (o *StringMap) SetCs(v string) {
o.Cs = &v
}
// GetDa returns the Da field value if set, zero value otherwise.
func (o *StringMap) GetDa() string {
if o == nil || o.Da == nil {
var ret string
return ret
}
return *o.Da
}
// GetDaOk returns a tuple with the Da field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetDaOk() (*string, bool) {
if o == nil || o.Da == nil {
return nil, false
}
return o.Da, true
}
// HasDa returns a boolean if a field has been set.
func (o *StringMap) HasDa() bool {
if o != nil && o.Da != nil {
return true
}
return false
}
// SetDa gets a reference to the given string and assigns it to the Da field.
func (o *StringMap) SetDa(v string) {
o.Da = &v
}
// GetNl returns the Nl field value if set, zero value otherwise.
func (o *StringMap) GetNl() string {
if o == nil || o.Nl == nil {
var ret string
return ret
}
return *o.Nl
}
// GetNlOk returns a tuple with the Nl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetNlOk() (*string, bool) {
if o == nil || o.Nl == nil {
return nil, false
}
return o.Nl, true
}
// HasNl returns a boolean if a field has been set.
func (o *StringMap) HasNl() bool {
if o != nil && o.Nl != nil {
return true
}
return false
}
// SetNl gets a reference to the given string and assigns it to the Nl field.
func (o *StringMap) SetNl(v string) {
o.Nl = &v
}
// GetEt returns the Et field value if set, zero value otherwise.
func (o *StringMap) GetEt() string {
if o == nil || o.Et == nil {
var ret string
return ret
}
return *o.Et
}
// GetEtOk returns a tuple with the Et field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetEtOk() (*string, bool) {
if o == nil || o.Et == nil {
return nil, false
}
return o.Et, true
}
// HasEt returns a boolean if a field has been set.
func (o *StringMap) HasEt() bool {
if o != nil && o.Et != nil {
return true
}
return false
}
// SetEt gets a reference to the given string and assigns it to the Et field.
func (o *StringMap) SetEt(v string) {
o.Et = &v
}
// GetFi returns the Fi field value if set, zero value otherwise.
func (o *StringMap) GetFi() string {
if o == nil || o.Fi == nil {
var ret string
return ret
}
return *o.Fi
}
// GetFiOk returns a tuple with the Fi field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetFiOk() (*string, bool) {
if o == nil || o.Fi == nil {
return nil, false
}
return o.Fi, true
}
// HasFi returns a boolean if a field has been set.
func (o *StringMap) HasFi() bool {
if o != nil && o.Fi != nil {
return true
}
return false
}
// SetFi gets a reference to the given string and assigns it to the Fi field.
func (o *StringMap) SetFi(v string) {
o.Fi = &v
}
// GetFr returns the Fr field value if set, zero value otherwise.
func (o *StringMap) GetFr() string {
if o == nil || o.Fr == nil {
var ret string
return ret
}
return *o.Fr
}
// GetFrOk returns a tuple with the Fr field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetFrOk() (*string, bool) {
if o == nil || o.Fr == nil {
return nil, false
}
return o.Fr, true
}
// HasFr returns a boolean if a field has been set.
func (o *StringMap) HasFr() bool {
if o != nil && o.Fr != nil {
return true
}
return false
}
// SetFr gets a reference to the given string and assigns it to the Fr field.
func (o *StringMap) SetFr(v string) {
o.Fr = &v
}
// GetKa returns the Ka field value if set, zero value otherwise.
func (o *StringMap) GetKa() string {
if o == nil || o.Ka == nil {
var ret string
return ret
}
return *o.Ka
}
// GetKaOk returns a tuple with the Ka field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetKaOk() (*string, bool) {
if o == nil || o.Ka == nil {
return nil, false
}
return o.Ka, true
}
// HasKa returns a boolean if a field has been set.
func (o *StringMap) HasKa() bool {
if o != nil && o.Ka != nil {
return true
}
return false
}
// SetKa gets a reference to the given string and assigns it to the Ka field.
func (o *StringMap) SetKa(v string) {
o.Ka = &v
}
// GetDe returns the De field value if set, zero value otherwise.
func (o *StringMap) GetDe() string {
if o == nil || o.De == nil {
var ret string
return ret
}
return *o.De
}
// GetDeOk returns a tuple with the De field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetDeOk() (*string, bool) {
if o == nil || o.De == nil {
return nil, false
}
return o.De, true
}
// HasDe returns a boolean if a field has been set.
func (o *StringMap) HasDe() bool {
if o != nil && o.De != nil {
return true
}
return false
}
// SetDe gets a reference to the given string and assigns it to the De field.
func (o *StringMap) SetDe(v string) {
o.De = &v
}
// GetEl returns the El field value if set, zero value otherwise.
func (o *StringMap) GetEl() string {
if o == nil || o.El == nil {
var ret string
return ret
}
return *o.El
}
// GetElOk returns a tuple with the El field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetElOk() (*string, bool) {
if o == nil || o.El == nil {
return nil, false
}
return o.El, true
}
// HasEl returns a boolean if a field has been set.
func (o *StringMap) HasEl() bool {
if o != nil && o.El != nil {
return true
}
return false
}
// SetEl gets a reference to the given string and assigns it to the El field.
func (o *StringMap) SetEl(v string) {
o.El = &v
}
// GetHi returns the Hi field value if set, zero value otherwise.
func (o *StringMap) GetHi() string {
if o == nil || o.Hi == nil {
var ret string
return ret
}
return *o.Hi
}
// GetHiOk returns a tuple with the Hi field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetHiOk() (*string, bool) {
if o == nil || o.Hi == nil {
return nil, false
}
return o.Hi, true
}
// HasHi returns a boolean if a field has been set.
func (o *StringMap) HasHi() bool {
if o != nil && o.Hi != nil {
return true
}
return false
}
// SetHi gets a reference to the given string and assigns it to the Hi field.
func (o *StringMap) SetHi(v string) {
o.Hi = &v
}
// GetHe returns the He field value if set, zero value otherwise.
func (o *StringMap) GetHe() string {
if o == nil || o.He == nil {
var ret string
return ret
}
return *o.He
}
// GetHeOk returns a tuple with the He field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetHeOk() (*string, bool) {
if o == nil || o.He == nil {
return nil, false
}
return o.He, true
}
// HasHe returns a boolean if a field has been set.
func (o *StringMap) HasHe() bool {
if o != nil && o.He != nil {
return true
}
return false
}
// SetHe gets a reference to the given string and assigns it to the He field.
func (o *StringMap) SetHe(v string) {
o.He = &v
}
// GetHu returns the Hu field value if set, zero value otherwise.
func (o *StringMap) GetHu() string {
if o == nil || o.Hu == nil {
var ret string
return ret
}
return *o.Hu
}
// GetHuOk returns a tuple with the Hu field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetHuOk() (*string, bool) {
if o == nil || o.Hu == nil {
return nil, false
}
return o.Hu, true
}
// HasHu returns a boolean if a field has been set.
func (o *StringMap) HasHu() bool {
if o != nil && o.Hu != nil {
return true
}
return false
}
// SetHu gets a reference to the given string and assigns it to the Hu field.
func (o *StringMap) SetHu(v string) {
o.Hu = &v
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *StringMap) GetId() string {
if o == nil || o.Id == nil {
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 *StringMap) GetIdOk() (*string, bool) {
if o == nil || o.Id == nil {
return nil, false
}
return o.Id, true
}
// HasId returns a boolean if a field has been set.
func (o *StringMap) HasId() bool {
if o != nil && o.Id != nil {
return true
}
return false
}
// SetId gets a reference to the given string and assigns it to the Id field.
func (o *StringMap) SetId(v string) {
o.Id = &v
}
// GetIt returns the It field value if set, zero value otherwise.
func (o *StringMap) GetIt() string {
if o == nil || o.It == nil {
var ret string
return ret
}
return *o.It
}
// GetItOk returns a tuple with the It field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetItOk() (*string, bool) {
if o == nil || o.It == nil {
return nil, false
}
return o.It, true
}
// HasIt returns a boolean if a field has been set.
func (o *StringMap) HasIt() bool {
if o != nil && o.It != nil {
return true
}
return false
}
// SetIt gets a reference to the given string and assigns it to the It field.
func (o *StringMap) SetIt(v string) {
o.It = &v
}
// GetJa returns the Ja field value if set, zero value otherwise.
func (o *StringMap) GetJa() string {
if o == nil || o.Ja == nil {
var ret string
return ret
}
return *o.Ja
}
// GetJaOk returns a tuple with the Ja field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetJaOk() (*string, bool) {
if o == nil || o.Ja == nil {
return nil, false
}
return o.Ja, true
}
// HasJa returns a boolean if a field has been set.
func (o *StringMap) HasJa() bool {
if o != nil && o.Ja != nil {
return true
}
return false
}
// SetJa gets a reference to the given string and assigns it to the Ja field.
func (o *StringMap) SetJa(v string) {
o.Ja = &v
}
// GetKo returns the Ko field value if set, zero value otherwise.
func (o *StringMap) GetKo() string {
if o == nil || o.Ko == nil {
var ret string
return ret
}
return *o.Ko
}
// GetKoOk returns a tuple with the Ko field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetKoOk() (*string, bool) {
if o == nil || o.Ko == nil {
return nil, false
}
return o.Ko, true
}
// HasKo returns a boolean if a field has been set.
func (o *StringMap) HasKo() bool {
if o != nil && o.Ko != nil {
return true
}
return false
}
// SetKo gets a reference to the given string and assigns it to the Ko field.
func (o *StringMap) SetKo(v string) {
o.Ko = &v
}
// GetLv returns the Lv field value if set, zero value otherwise.
func (o *StringMap) GetLv() string {
if o == nil || o.Lv == nil {
var ret string
return ret
}
return *o.Lv
}
// GetLvOk returns a tuple with the Lv field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetLvOk() (*string, bool) {
if o == nil || o.Lv == nil {
return nil, false
}
return o.Lv, true
}
// HasLv returns a boolean if a field has been set.
func (o *StringMap) HasLv() bool {
if o != nil && o.Lv != nil {
return true
}
return false
}
// SetLv gets a reference to the given string and assigns it to the Lv field.
func (o *StringMap) SetLv(v string) {
o.Lv = &v
}
// GetLt returns the Lt field value if set, zero value otherwise.
func (o *StringMap) GetLt() string {
if o == nil || o.Lt == nil {
var ret string
return ret
}
return *o.Lt
}
// GetLtOk returns a tuple with the Lt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *StringMap) GetLtOk() (*string, bool) {
if o == nil || o.Lt == nil {
return nil, false
}
return o.Lt, true
}
// HasLt returns a boolean if a field has been set.
func (o *StringMap) HasLt() bool {
if o != nil && o.Lt != nil {
return true
}
return false
}
// SetLt gets a reference to the given string and assigns it to the Lt field.
func (o *StringMap) SetLt(v string) {
o.Lt = &v
}
// GetMs returns the Ms field value if set, zero value otherwise.
func (o *StringMap) GetMs() string {
if o == nil || o.Ms == nil {
var ret string
return ret
}
return *o.Ms
}