This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_config_response.go
1515 lines (1311 loc) · 48.9 KB
/
model_config_response.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
/*
Corellium API
REST API to manage your virtual devices.
API version: 5.5.0-18750
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package corellium
import (
"encoding/json"
)
// checks if the ConfigResponse type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ConfigResponse{}
// ConfigResponse
type ConfigResponse struct {
// Denotes whether it's an on-site install
OnSite NullableBool `json:"onSite,omitempty"`
// Denotes whether to show domain settings
ShowDomainSettings NullableBool `json:"showDomainSettings,omitempty"`
// Denotes the version
Version NullableString `json:"version,omitempty"`
// Denotes whether the build is invalid
InvalidBuild NullableBool `json:"invalidBuild,omitempty"`
// Denotes whether sepSim is enabled
SepSim NullableBool `json:"sepSim,omitempty"`
// Denotes whether installer is available
InstallerAvailable NullableBool `json:"installerAvailable,omitempty"`
// API publishable key to use for Invoiced
InvoicedPublishableKey NullableString `json:"invoicedPublishableKey,omitempty"`
// Stripe public key
StripePublicKey NullableString `json:"stripePublicKey,omitempty"`
// Intercom app ID, also known as workspace ID
IntercomId NullableString `json:"intercomId,omitempty"`
// Webhook URL for aux
AuxWebhook NullableString `json:"auxWebhook,omitempty"`
// Google Tag Manager
GtmId NullableString `json:"gtmId,omitempty"`
// Webhook URL to send feedback into Productboard automatically
ZapierFeedbackWebhook NullableString `json:"zapierFeedbackWebhook,omitempty"`
// Webhook URL to send frontend errors to Jira automatically
ZapierBugsWebhook NullableString `json:"zapierBugsWebhook,omitempty"`
// Default backend billing api name for new subscriptions (e.g. \"stripe\")
BillingBackend NullableString `json:"billingBackend,omitempty"`
Maintenance NullableConfigResponseMaintenance `json:"maintenance,omitempty"`
Logging *Logging `json:"logging,omitempty"`
// URL for cloud admin login
CloudAdmin NullableString `json:"cloudAdmin,omitempty"`
// URL for files admin login
FilesAdmin NullableString `json:"filesAdmin,omitempty"`
// Cloud domain name (usually corellium.com or staging.corellium.com)
CloudDomain NullableString `json:"cloudDomain,omitempty"`
// Billing domain name
BillingDomain NullableString `json:"billingDomain,omitempty"`
// App domain name (usually app.corellium.com or app.staging.corellium.com)
AppDomain NullableString `json:"appDomain,omitempty"`
// Maximum network monitor file size
MaxNetworkMonitorFileSize NullableString `json:"maxNetworkMonitorFileSize,omitempty"`
// Denotes whether users can upload firmware images
EnableFirmwareImageUpload NullableBool `json:"enableFirmwareImageUpload,omitempty"`
// Auth providers
AuthProviders []AuthProvider `json:"authProviders,omitempty"`
// Maximum number of snapshots to allow
SnapshotLimit NullableFloat32 `json:"snapshotLimit,omitempty"`
// The maximum size, in bytes, (default: 100 MB) that an uploaded kernel should be
MaxKernelSize NullableFloat32 `json:"maxKernelSize,omitempty"`
// The maximum size, in bytes, (default: 500 MB) that an uploaded ramdisk should be
MaxRamdiskSize NullableFloat32 `json:"maxRamdiskSize,omitempty"`
// Denotes whether charmSDK is enabled
CharmSDK NullableString `json:"charmSDK,omitempty"`
Trial *Trial `json:"trial,omitempty"`
// Sentry URL
SentryUrl NullableString `json:"sentryUrl,omitempty"`
// If enabled, adds the default providers in their current configuration
DomainAuthenticationProviders NullableBool `json:"domainAuthenticationProviders,omitempty"`
}
// NewConfigResponse instantiates a new ConfigResponse 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 NewConfigResponse() *ConfigResponse {
this := ConfigResponse{}
return &this
}
// NewConfigResponseWithDefaults instantiates a new ConfigResponse 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 NewConfigResponseWithDefaults() *ConfigResponse {
this := ConfigResponse{}
return &this
}
// GetOnSite returns the OnSite field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetOnSite() bool {
if o == nil || IsNil(o.OnSite.Get()) {
var ret bool
return ret
}
return *o.OnSite.Get()
}
// GetOnSiteOk returns a tuple with the OnSite 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 *ConfigResponse) GetOnSiteOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.OnSite.Get(), o.OnSite.IsSet()
}
// HasOnSite returns a boolean if a field has been set.
func (o *ConfigResponse) HasOnSite() bool {
if o != nil && o.OnSite.IsSet() {
return true
}
return false
}
// SetOnSite gets a reference to the given NullableBool and assigns it to the OnSite field.
func (o *ConfigResponse) SetOnSite(v bool) {
o.OnSite.Set(&v)
}
// SetOnSiteNil sets the value for OnSite to be an explicit nil
func (o *ConfigResponse) SetOnSiteNil() {
o.OnSite.Set(nil)
}
// UnsetOnSite ensures that no value is present for OnSite, not even an explicit nil
func (o *ConfigResponse) UnsetOnSite() {
o.OnSite.Unset()
}
// GetShowDomainSettings returns the ShowDomainSettings field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetShowDomainSettings() bool {
if o == nil || IsNil(o.ShowDomainSettings.Get()) {
var ret bool
return ret
}
return *o.ShowDomainSettings.Get()
}
// GetShowDomainSettingsOk returns a tuple with the ShowDomainSettings 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 *ConfigResponse) GetShowDomainSettingsOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.ShowDomainSettings.Get(), o.ShowDomainSettings.IsSet()
}
// HasShowDomainSettings returns a boolean if a field has been set.
func (o *ConfigResponse) HasShowDomainSettings() bool {
if o != nil && o.ShowDomainSettings.IsSet() {
return true
}
return false
}
// SetShowDomainSettings gets a reference to the given NullableBool and assigns it to the ShowDomainSettings field.
func (o *ConfigResponse) SetShowDomainSettings(v bool) {
o.ShowDomainSettings.Set(&v)
}
// SetShowDomainSettingsNil sets the value for ShowDomainSettings to be an explicit nil
func (o *ConfigResponse) SetShowDomainSettingsNil() {
o.ShowDomainSettings.Set(nil)
}
// UnsetShowDomainSettings ensures that no value is present for ShowDomainSettings, not even an explicit nil
func (o *ConfigResponse) UnsetShowDomainSettings() {
o.ShowDomainSettings.Unset()
}
// GetVersion returns the Version field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetVersion() string {
if o == nil || IsNil(o.Version.Get()) {
var ret string
return ret
}
return *o.Version.Get()
}
// GetVersionOk returns a tuple with the Version 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 *ConfigResponse) GetVersionOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Version.Get(), o.Version.IsSet()
}
// HasVersion returns a boolean if a field has been set.
func (o *ConfigResponse) HasVersion() bool {
if o != nil && o.Version.IsSet() {
return true
}
return false
}
// SetVersion gets a reference to the given NullableString and assigns it to the Version field.
func (o *ConfigResponse) SetVersion(v string) {
o.Version.Set(&v)
}
// SetVersionNil sets the value for Version to be an explicit nil
func (o *ConfigResponse) SetVersionNil() {
o.Version.Set(nil)
}
// UnsetVersion ensures that no value is present for Version, not even an explicit nil
func (o *ConfigResponse) UnsetVersion() {
o.Version.Unset()
}
// GetInvalidBuild returns the InvalidBuild field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetInvalidBuild() bool {
if o == nil || IsNil(o.InvalidBuild.Get()) {
var ret bool
return ret
}
return *o.InvalidBuild.Get()
}
// GetInvalidBuildOk returns a tuple with the InvalidBuild 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 *ConfigResponse) GetInvalidBuildOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.InvalidBuild.Get(), o.InvalidBuild.IsSet()
}
// HasInvalidBuild returns a boolean if a field has been set.
func (o *ConfigResponse) HasInvalidBuild() bool {
if o != nil && o.InvalidBuild.IsSet() {
return true
}
return false
}
// SetInvalidBuild gets a reference to the given NullableBool and assigns it to the InvalidBuild field.
func (o *ConfigResponse) SetInvalidBuild(v bool) {
o.InvalidBuild.Set(&v)
}
// SetInvalidBuildNil sets the value for InvalidBuild to be an explicit nil
func (o *ConfigResponse) SetInvalidBuildNil() {
o.InvalidBuild.Set(nil)
}
// UnsetInvalidBuild ensures that no value is present for InvalidBuild, not even an explicit nil
func (o *ConfigResponse) UnsetInvalidBuild() {
o.InvalidBuild.Unset()
}
// GetSepSim returns the SepSim field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetSepSim() bool {
if o == nil || IsNil(o.SepSim.Get()) {
var ret bool
return ret
}
return *o.SepSim.Get()
}
// GetSepSimOk returns a tuple with the SepSim 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 *ConfigResponse) GetSepSimOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SepSim.Get(), o.SepSim.IsSet()
}
// HasSepSim returns a boolean if a field has been set.
func (o *ConfigResponse) HasSepSim() bool {
if o != nil && o.SepSim.IsSet() {
return true
}
return false
}
// SetSepSim gets a reference to the given NullableBool and assigns it to the SepSim field.
func (o *ConfigResponse) SetSepSim(v bool) {
o.SepSim.Set(&v)
}
// SetSepSimNil sets the value for SepSim to be an explicit nil
func (o *ConfigResponse) SetSepSimNil() {
o.SepSim.Set(nil)
}
// UnsetSepSim ensures that no value is present for SepSim, not even an explicit nil
func (o *ConfigResponse) UnsetSepSim() {
o.SepSim.Unset()
}
// GetInstallerAvailable returns the InstallerAvailable field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetInstallerAvailable() bool {
if o == nil || IsNil(o.InstallerAvailable.Get()) {
var ret bool
return ret
}
return *o.InstallerAvailable.Get()
}
// GetInstallerAvailableOk returns a tuple with the InstallerAvailable 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 *ConfigResponse) GetInstallerAvailableOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.InstallerAvailable.Get(), o.InstallerAvailable.IsSet()
}
// HasInstallerAvailable returns a boolean if a field has been set.
func (o *ConfigResponse) HasInstallerAvailable() bool {
if o != nil && o.InstallerAvailable.IsSet() {
return true
}
return false
}
// SetInstallerAvailable gets a reference to the given NullableBool and assigns it to the InstallerAvailable field.
func (o *ConfigResponse) SetInstallerAvailable(v bool) {
o.InstallerAvailable.Set(&v)
}
// SetInstallerAvailableNil sets the value for InstallerAvailable to be an explicit nil
func (o *ConfigResponse) SetInstallerAvailableNil() {
o.InstallerAvailable.Set(nil)
}
// UnsetInstallerAvailable ensures that no value is present for InstallerAvailable, not even an explicit nil
func (o *ConfigResponse) UnsetInstallerAvailable() {
o.InstallerAvailable.Unset()
}
// GetInvoicedPublishableKey returns the InvoicedPublishableKey field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetInvoicedPublishableKey() string {
if o == nil || IsNil(o.InvoicedPublishableKey.Get()) {
var ret string
return ret
}
return *o.InvoicedPublishableKey.Get()
}
// GetInvoicedPublishableKeyOk returns a tuple with the InvoicedPublishableKey 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 *ConfigResponse) GetInvoicedPublishableKeyOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.InvoicedPublishableKey.Get(), o.InvoicedPublishableKey.IsSet()
}
// HasInvoicedPublishableKey returns a boolean if a field has been set.
func (o *ConfigResponse) HasInvoicedPublishableKey() bool {
if o != nil && o.InvoicedPublishableKey.IsSet() {
return true
}
return false
}
// SetInvoicedPublishableKey gets a reference to the given NullableString and assigns it to the InvoicedPublishableKey field.
func (o *ConfigResponse) SetInvoicedPublishableKey(v string) {
o.InvoicedPublishableKey.Set(&v)
}
// SetInvoicedPublishableKeyNil sets the value for InvoicedPublishableKey to be an explicit nil
func (o *ConfigResponse) SetInvoicedPublishableKeyNil() {
o.InvoicedPublishableKey.Set(nil)
}
// UnsetInvoicedPublishableKey ensures that no value is present for InvoicedPublishableKey, not even an explicit nil
func (o *ConfigResponse) UnsetInvoicedPublishableKey() {
o.InvoicedPublishableKey.Unset()
}
// GetStripePublicKey returns the StripePublicKey field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetStripePublicKey() string {
if o == nil || IsNil(o.StripePublicKey.Get()) {
var ret string
return ret
}
return *o.StripePublicKey.Get()
}
// GetStripePublicKeyOk returns a tuple with the StripePublicKey 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 *ConfigResponse) GetStripePublicKeyOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.StripePublicKey.Get(), o.StripePublicKey.IsSet()
}
// HasStripePublicKey returns a boolean if a field has been set.
func (o *ConfigResponse) HasStripePublicKey() bool {
if o != nil && o.StripePublicKey.IsSet() {
return true
}
return false
}
// SetStripePublicKey gets a reference to the given NullableString and assigns it to the StripePublicKey field.
func (o *ConfigResponse) SetStripePublicKey(v string) {
o.StripePublicKey.Set(&v)
}
// SetStripePublicKeyNil sets the value for StripePublicKey to be an explicit nil
func (o *ConfigResponse) SetStripePublicKeyNil() {
o.StripePublicKey.Set(nil)
}
// UnsetStripePublicKey ensures that no value is present for StripePublicKey, not even an explicit nil
func (o *ConfigResponse) UnsetStripePublicKey() {
o.StripePublicKey.Unset()
}
// GetIntercomId returns the IntercomId field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetIntercomId() string {
if o == nil || IsNil(o.IntercomId.Get()) {
var ret string
return ret
}
return *o.IntercomId.Get()
}
// GetIntercomIdOk returns a tuple with the IntercomId 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 *ConfigResponse) GetIntercomIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.IntercomId.Get(), o.IntercomId.IsSet()
}
// HasIntercomId returns a boolean if a field has been set.
func (o *ConfigResponse) HasIntercomId() bool {
if o != nil && o.IntercomId.IsSet() {
return true
}
return false
}
// SetIntercomId gets a reference to the given NullableString and assigns it to the IntercomId field.
func (o *ConfigResponse) SetIntercomId(v string) {
o.IntercomId.Set(&v)
}
// SetIntercomIdNil sets the value for IntercomId to be an explicit nil
func (o *ConfigResponse) SetIntercomIdNil() {
o.IntercomId.Set(nil)
}
// UnsetIntercomId ensures that no value is present for IntercomId, not even an explicit nil
func (o *ConfigResponse) UnsetIntercomId() {
o.IntercomId.Unset()
}
// GetAuxWebhook returns the AuxWebhook field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetAuxWebhook() string {
if o == nil || IsNil(o.AuxWebhook.Get()) {
var ret string
return ret
}
return *o.AuxWebhook.Get()
}
// GetAuxWebhookOk returns a tuple with the AuxWebhook 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 *ConfigResponse) GetAuxWebhookOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AuxWebhook.Get(), o.AuxWebhook.IsSet()
}
// HasAuxWebhook returns a boolean if a field has been set.
func (o *ConfigResponse) HasAuxWebhook() bool {
if o != nil && o.AuxWebhook.IsSet() {
return true
}
return false
}
// SetAuxWebhook gets a reference to the given NullableString and assigns it to the AuxWebhook field.
func (o *ConfigResponse) SetAuxWebhook(v string) {
o.AuxWebhook.Set(&v)
}
// SetAuxWebhookNil sets the value for AuxWebhook to be an explicit nil
func (o *ConfigResponse) SetAuxWebhookNil() {
o.AuxWebhook.Set(nil)
}
// UnsetAuxWebhook ensures that no value is present for AuxWebhook, not even an explicit nil
func (o *ConfigResponse) UnsetAuxWebhook() {
o.AuxWebhook.Unset()
}
// GetGtmId returns the GtmId field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetGtmId() string {
if o == nil || IsNil(o.GtmId.Get()) {
var ret string
return ret
}
return *o.GtmId.Get()
}
// GetGtmIdOk returns a tuple with the GtmId 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 *ConfigResponse) GetGtmIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.GtmId.Get(), o.GtmId.IsSet()
}
// HasGtmId returns a boolean if a field has been set.
func (o *ConfigResponse) HasGtmId() bool {
if o != nil && o.GtmId.IsSet() {
return true
}
return false
}
// SetGtmId gets a reference to the given NullableString and assigns it to the GtmId field.
func (o *ConfigResponse) SetGtmId(v string) {
o.GtmId.Set(&v)
}
// SetGtmIdNil sets the value for GtmId to be an explicit nil
func (o *ConfigResponse) SetGtmIdNil() {
o.GtmId.Set(nil)
}
// UnsetGtmId ensures that no value is present for GtmId, not even an explicit nil
func (o *ConfigResponse) UnsetGtmId() {
o.GtmId.Unset()
}
// GetZapierFeedbackWebhook returns the ZapierFeedbackWebhook field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetZapierFeedbackWebhook() string {
if o == nil || IsNil(o.ZapierFeedbackWebhook.Get()) {
var ret string
return ret
}
return *o.ZapierFeedbackWebhook.Get()
}
// GetZapierFeedbackWebhookOk returns a tuple with the ZapierFeedbackWebhook 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 *ConfigResponse) GetZapierFeedbackWebhookOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ZapierFeedbackWebhook.Get(), o.ZapierFeedbackWebhook.IsSet()
}
// HasZapierFeedbackWebhook returns a boolean if a field has been set.
func (o *ConfigResponse) HasZapierFeedbackWebhook() bool {
if o != nil && o.ZapierFeedbackWebhook.IsSet() {
return true
}
return false
}
// SetZapierFeedbackWebhook gets a reference to the given NullableString and assigns it to the ZapierFeedbackWebhook field.
func (o *ConfigResponse) SetZapierFeedbackWebhook(v string) {
o.ZapierFeedbackWebhook.Set(&v)
}
// SetZapierFeedbackWebhookNil sets the value for ZapierFeedbackWebhook to be an explicit nil
func (o *ConfigResponse) SetZapierFeedbackWebhookNil() {
o.ZapierFeedbackWebhook.Set(nil)
}
// UnsetZapierFeedbackWebhook ensures that no value is present for ZapierFeedbackWebhook, not even an explicit nil
func (o *ConfigResponse) UnsetZapierFeedbackWebhook() {
o.ZapierFeedbackWebhook.Unset()
}
// GetZapierBugsWebhook returns the ZapierBugsWebhook field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetZapierBugsWebhook() string {
if o == nil || IsNil(o.ZapierBugsWebhook.Get()) {
var ret string
return ret
}
return *o.ZapierBugsWebhook.Get()
}
// GetZapierBugsWebhookOk returns a tuple with the ZapierBugsWebhook 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 *ConfigResponse) GetZapierBugsWebhookOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ZapierBugsWebhook.Get(), o.ZapierBugsWebhook.IsSet()
}
// HasZapierBugsWebhook returns a boolean if a field has been set.
func (o *ConfigResponse) HasZapierBugsWebhook() bool {
if o != nil && o.ZapierBugsWebhook.IsSet() {
return true
}
return false
}
// SetZapierBugsWebhook gets a reference to the given NullableString and assigns it to the ZapierBugsWebhook field.
func (o *ConfigResponse) SetZapierBugsWebhook(v string) {
o.ZapierBugsWebhook.Set(&v)
}
// SetZapierBugsWebhookNil sets the value for ZapierBugsWebhook to be an explicit nil
func (o *ConfigResponse) SetZapierBugsWebhookNil() {
o.ZapierBugsWebhook.Set(nil)
}
// UnsetZapierBugsWebhook ensures that no value is present for ZapierBugsWebhook, not even an explicit nil
func (o *ConfigResponse) UnsetZapierBugsWebhook() {
o.ZapierBugsWebhook.Unset()
}
// GetBillingBackend returns the BillingBackend field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetBillingBackend() string {
if o == nil || IsNil(o.BillingBackend.Get()) {
var ret string
return ret
}
return *o.BillingBackend.Get()
}
// GetBillingBackendOk returns a tuple with the BillingBackend 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 *ConfigResponse) GetBillingBackendOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.BillingBackend.Get(), o.BillingBackend.IsSet()
}
// HasBillingBackend returns a boolean if a field has been set.
func (o *ConfigResponse) HasBillingBackend() bool {
if o != nil && o.BillingBackend.IsSet() {
return true
}
return false
}
// SetBillingBackend gets a reference to the given NullableString and assigns it to the BillingBackend field.
func (o *ConfigResponse) SetBillingBackend(v string) {
o.BillingBackend.Set(&v)
}
// SetBillingBackendNil sets the value for BillingBackend to be an explicit nil
func (o *ConfigResponse) SetBillingBackendNil() {
o.BillingBackend.Set(nil)
}
// UnsetBillingBackend ensures that no value is present for BillingBackend, not even an explicit nil
func (o *ConfigResponse) UnsetBillingBackend() {
o.BillingBackend.Unset()
}
// GetMaintenance returns the Maintenance field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetMaintenance() ConfigResponseMaintenance {
if o == nil || IsNil(o.Maintenance.Get()) {
var ret ConfigResponseMaintenance
return ret
}
return *o.Maintenance.Get()
}
// GetMaintenanceOk returns a tuple with the Maintenance 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 *ConfigResponse) GetMaintenanceOk() (*ConfigResponseMaintenance, bool) {
if o == nil {
return nil, false
}
return o.Maintenance.Get(), o.Maintenance.IsSet()
}
// HasMaintenance returns a boolean if a field has been set.
func (o *ConfigResponse) HasMaintenance() bool {
if o != nil && o.Maintenance.IsSet() {
return true
}
return false
}
// SetMaintenance gets a reference to the given NullableConfigResponseMaintenance and assigns it to the Maintenance field.
func (o *ConfigResponse) SetMaintenance(v ConfigResponseMaintenance) {
o.Maintenance.Set(&v)
}
// SetMaintenanceNil sets the value for Maintenance to be an explicit nil
func (o *ConfigResponse) SetMaintenanceNil() {
o.Maintenance.Set(nil)
}
// UnsetMaintenance ensures that no value is present for Maintenance, not even an explicit nil
func (o *ConfigResponse) UnsetMaintenance() {
o.Maintenance.Unset()
}
// GetLogging returns the Logging field value if set, zero value otherwise.
func (o *ConfigResponse) GetLogging() Logging {
if o == nil || IsNil(o.Logging) {
var ret Logging
return ret
}
return *o.Logging
}
// GetLoggingOk returns a tuple with the Logging field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ConfigResponse) GetLoggingOk() (*Logging, bool) {
if o == nil || IsNil(o.Logging) {
return nil, false
}
return o.Logging, true
}
// HasLogging returns a boolean if a field has been set.
func (o *ConfigResponse) HasLogging() bool {
if o != nil && !IsNil(o.Logging) {
return true
}
return false
}
// SetLogging gets a reference to the given Logging and assigns it to the Logging field.
func (o *ConfigResponse) SetLogging(v Logging) {
o.Logging = &v
}
// GetCloudAdmin returns the CloudAdmin field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetCloudAdmin() string {
if o == nil || IsNil(o.CloudAdmin.Get()) {
var ret string
return ret
}
return *o.CloudAdmin.Get()
}
// GetCloudAdminOk returns a tuple with the CloudAdmin 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 *ConfigResponse) GetCloudAdminOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.CloudAdmin.Get(), o.CloudAdmin.IsSet()
}
// HasCloudAdmin returns a boolean if a field has been set.
func (o *ConfigResponse) HasCloudAdmin() bool {
if o != nil && o.CloudAdmin.IsSet() {
return true
}
return false
}
// SetCloudAdmin gets a reference to the given NullableString and assigns it to the CloudAdmin field.
func (o *ConfigResponse) SetCloudAdmin(v string) {
o.CloudAdmin.Set(&v)
}
// SetCloudAdminNil sets the value for CloudAdmin to be an explicit nil
func (o *ConfigResponse) SetCloudAdminNil() {
o.CloudAdmin.Set(nil)
}
// UnsetCloudAdmin ensures that no value is present for CloudAdmin, not even an explicit nil
func (o *ConfigResponse) UnsetCloudAdmin() {
o.CloudAdmin.Unset()
}
// GetFilesAdmin returns the FilesAdmin field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetFilesAdmin() string {
if o == nil || IsNil(o.FilesAdmin.Get()) {
var ret string
return ret
}
return *o.FilesAdmin.Get()
}
// GetFilesAdminOk returns a tuple with the FilesAdmin 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 *ConfigResponse) GetFilesAdminOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.FilesAdmin.Get(), o.FilesAdmin.IsSet()
}
// HasFilesAdmin returns a boolean if a field has been set.
func (o *ConfigResponse) HasFilesAdmin() bool {
if o != nil && o.FilesAdmin.IsSet() {
return true
}
return false
}
// SetFilesAdmin gets a reference to the given NullableString and assigns it to the FilesAdmin field.
func (o *ConfigResponse) SetFilesAdmin(v string) {
o.FilesAdmin.Set(&v)
}
// SetFilesAdminNil sets the value for FilesAdmin to be an explicit nil
func (o *ConfigResponse) SetFilesAdminNil() {
o.FilesAdmin.Set(nil)
}
// UnsetFilesAdmin ensures that no value is present for FilesAdmin, not even an explicit nil
func (o *ConfigResponse) UnsetFilesAdmin() {
o.FilesAdmin.Unset()
}
// GetCloudDomain returns the CloudDomain field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetCloudDomain() string {
if o == nil || IsNil(o.CloudDomain.Get()) {
var ret string
return ret
}
return *o.CloudDomain.Get()
}
// GetCloudDomainOk returns a tuple with the CloudDomain 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 *ConfigResponse) GetCloudDomainOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.CloudDomain.Get(), o.CloudDomain.IsSet()
}
// HasCloudDomain returns a boolean if a field has been set.
func (o *ConfigResponse) HasCloudDomain() bool {
if o != nil && o.CloudDomain.IsSet() {
return true
}
return false
}
// SetCloudDomain gets a reference to the given NullableString and assigns it to the CloudDomain field.
func (o *ConfigResponse) SetCloudDomain(v string) {
o.CloudDomain.Set(&v)
}
// SetCloudDomainNil sets the value for CloudDomain to be an explicit nil
func (o *ConfigResponse) SetCloudDomainNil() {
o.CloudDomain.Set(nil)
}
// UnsetCloudDomain ensures that no value is present for CloudDomain, not even an explicit nil
func (o *ConfigResponse) UnsetCloudDomain() {
o.CloudDomain.Unset()
}
// GetBillingDomain returns the BillingDomain field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetBillingDomain() string {
if o == nil || IsNil(o.BillingDomain.Get()) {
var ret string
return ret
}
return *o.BillingDomain.Get()
}
// GetBillingDomainOk returns a tuple with the BillingDomain 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 *ConfigResponse) GetBillingDomainOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.BillingDomain.Get(), o.BillingDomain.IsSet()
}
// HasBillingDomain returns a boolean if a field has been set.
func (o *ConfigResponse) HasBillingDomain() bool {
if o != nil && o.BillingDomain.IsSet() {
return true
}
return false
}
// SetBillingDomain gets a reference to the given NullableString and assigns it to the BillingDomain field.
func (o *ConfigResponse) SetBillingDomain(v string) {
o.BillingDomain.Set(&v)
}
// SetBillingDomainNil sets the value for BillingDomain to be an explicit nil
func (o *ConfigResponse) SetBillingDomainNil() {
o.BillingDomain.Set(nil)
}
// UnsetBillingDomain ensures that no value is present for BillingDomain, not even an explicit nil
func (o *ConfigResponse) UnsetBillingDomain() {
o.BillingDomain.Unset()
}
// GetAppDomain returns the AppDomain field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetAppDomain() string {
if o == nil || IsNil(o.AppDomain.Get()) {
var ret string
return ret
}
return *o.AppDomain.Get()
}
// GetAppDomainOk returns a tuple with the AppDomain 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 *ConfigResponse) GetAppDomainOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AppDomain.Get(), o.AppDomain.IsSet()
}
// HasAppDomain returns a boolean if a field has been set.
func (o *ConfigResponse) HasAppDomain() bool {
if o != nil && o.AppDomain.IsSet() {
return true
}
return false
}
// SetAppDomain gets a reference to the given NullableString and assigns it to the AppDomain field.
func (o *ConfigResponse) SetAppDomain(v string) {
o.AppDomain.Set(&v)
}
// SetAppDomainNil sets the value for AppDomain to be an explicit nil
func (o *ConfigResponse) SetAppDomainNil() {
o.AppDomain.Set(nil)
}
// UnsetAppDomain ensures that no value is present for AppDomain, not even an explicit nil
func (o *ConfigResponse) UnsetAppDomain() {
o.AppDomain.Unset()
}
// GetMaxNetworkMonitorFileSize returns the MaxNetworkMonitorFileSize field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ConfigResponse) GetMaxNetworkMonitorFileSize() string {
if o == nil || IsNil(o.MaxNetworkMonitorFileSize.Get()) {
var ret string
return ret
}
return *o.MaxNetworkMonitorFileSize.Get()
}
// GetMaxNetworkMonitorFileSizeOk returns a tuple with the MaxNetworkMonitorFileSize 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 *ConfigResponse) GetMaxNetworkMonitorFileSizeOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.MaxNetworkMonitorFileSize.Get(), o.MaxNetworkMonitorFileSize.IsSet()
}
// HasMaxNetworkMonitorFileSize returns a boolean if a field has been set.
func (o *ConfigResponse) HasMaxNetworkMonitorFileSize() bool {
if o != nil && o.MaxNetworkMonitorFileSize.IsSet() {
return true
}
return false
}
// SetMaxNetworkMonitorFileSize gets a reference to the given NullableString and assigns it to the MaxNetworkMonitorFileSize field.