forked from voucherifyio/sdk-java-openapi-based
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPromotionsTiersEnableResponseBody.java
883 lines (700 loc) · 30.1 KB
/
PromotionsTiersEnableResponseBody.java
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
/*
* Voucherify API
* Voucherify promotion engine REST API. Please see https://docs.voucherify.io/docs for more details.
*
* The version of the OpenAPI document: v2018-08-01
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package voucherify.client.model;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import voucherify.client.model.Category;
import voucherify.client.model.PromotionTierAction;
import voucherify.client.model.PromotionTierCampaign;
import voucherify.client.model.PromotionTierSummary;
import voucherify.client.model.PromotionTierValidityTimeframe;
import voucherify.client.model.ValidationRuleAssignmentsList;
import voucherify.client.model.ValidityHours;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import voucherify.client.JSON;
/**
* Response body schema for **POST** `/promotions/tiers/{promotionTierId}/enable`.
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PromotionsTiersEnableResponseBody {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private String id;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private OffsetDateTime createdAt;
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
private OffsetDateTime updatedAt;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_BANNER = "banner";
@SerializedName(SERIALIZED_NAME_BANNER)
private String banner;
public static final String SERIALIZED_NAME_ACTION = "action";
@SerializedName(SERIALIZED_NAME_ACTION)
private PromotionTierAction action;
public static final String SERIALIZED_NAME_METADATA = "metadata";
@SerializedName(SERIALIZED_NAME_METADATA)
private Object metadata;
public static final String SERIALIZED_NAME_HIERARCHY = "hierarchy";
@SerializedName(SERIALIZED_NAME_HIERARCHY)
private Integer hierarchy;
public static final String SERIALIZED_NAME_PROMOTION_ID = "promotion_id";
@SerializedName(SERIALIZED_NAME_PROMOTION_ID)
private String promotionId;
public static final String SERIALIZED_NAME_CAMPAIGN = "campaign";
@SerializedName(SERIALIZED_NAME_CAMPAIGN)
private PromotionTierCampaign campaign;
public static final String SERIALIZED_NAME_CAMPAIGN_ID = "campaign_id";
@SerializedName(SERIALIZED_NAME_CAMPAIGN_ID)
private String campaignId;
public static final String SERIALIZED_NAME_ACTIVE = "active";
@SerializedName(SERIALIZED_NAME_ACTIVE)
private Boolean active;
public static final String SERIALIZED_NAME_START_DATE = "start_date";
@SerializedName(SERIALIZED_NAME_START_DATE)
private OffsetDateTime startDate;
public static final String SERIALIZED_NAME_EXPIRATION_DATE = "expiration_date";
@SerializedName(SERIALIZED_NAME_EXPIRATION_DATE)
private OffsetDateTime expirationDate;
public static final String SERIALIZED_NAME_VALIDITY_TIMEFRAME = "validity_timeframe";
@SerializedName(SERIALIZED_NAME_VALIDITY_TIMEFRAME)
private PromotionTierValidityTimeframe validityTimeframe;
public static final String SERIALIZED_NAME_VALIDITY_DAY_OF_WEEK = "validity_day_of_week";
@SerializedName(SERIALIZED_NAME_VALIDITY_DAY_OF_WEEK)
private List<Integer> validityDayOfWeek;
public static final String SERIALIZED_NAME_VALIDITY_HOURS = "validity_hours";
@SerializedName(SERIALIZED_NAME_VALIDITY_HOURS)
private ValidityHours validityHours;
public static final String SERIALIZED_NAME_SUMMARY = "summary";
@SerializedName(SERIALIZED_NAME_SUMMARY)
private PromotionTierSummary summary;
public static final String SERIALIZED_NAME_OBJECT = "object";
@SerializedName(SERIALIZED_NAME_OBJECT)
private String _object = "promotion_tier";
public static final String SERIALIZED_NAME_VALIDATION_RULE_ASSIGNMENTS = "validation_rule_assignments";
@SerializedName(SERIALIZED_NAME_VALIDATION_RULE_ASSIGNMENTS)
private ValidationRuleAssignmentsList validationRuleAssignments;
public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id";
@SerializedName(SERIALIZED_NAME_CATEGORY_ID)
private String categoryId;
public static final String SERIALIZED_NAME_CATEGORIES = "categories";
@SerializedName(SERIALIZED_NAME_CATEGORIES)
private List<Category> categories;
public PromotionsTiersEnableResponseBody() {
}
public PromotionsTiersEnableResponseBody id(String id) {
this.id = id;
return this;
}
/**
* Unique promotion tier ID.
* @return id
**/
@javax.annotation.Nullable
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public PromotionsTiersEnableResponseBody createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Timestamp representing the date and time when the promotion tier was created. The value is shown in the ISO 8601 format.
* @return createdAt
**/
@javax.annotation.Nullable
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public PromotionsTiersEnableResponseBody updatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Timestamp representing the date and time when the promotion tier was updated. The value is shown in the ISO 8601 format.
* @return updatedAt
**/
@javax.annotation.Nullable
public OffsetDateTime getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
}
public PromotionsTiersEnableResponseBody name(String name) {
this.name = name;
return this;
}
/**
* Name of the promotion tier.
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public PromotionsTiersEnableResponseBody banner(String banner) {
this.banner = banner;
return this;
}
/**
* Text to be displayed to your customers on your website.
* @return banner
**/
@javax.annotation.Nullable
public String getBanner() {
return banner;
}
public void setBanner(String banner) {
this.banner = banner;
}
public PromotionsTiersEnableResponseBody action(PromotionTierAction action) {
this.action = action;
return this;
}
/**
* Get action
* @return action
**/
@javax.annotation.Nullable
public PromotionTierAction getAction() {
return action;
}
public void setAction(PromotionTierAction action) {
this.action = action;
}
public PromotionsTiersEnableResponseBody metadata(Object metadata) {
this.metadata = metadata;
return this;
}
/**
* The metadata object stores all custom attributes assigned to the promotion tier. A set of key/value pairs that you can attach to a promotion tier object. It can be useful for storing additional information about the promotion tier in a structured format.
* @return metadata
**/
@javax.annotation.Nullable
public Object getMetadata() {
return metadata;
}
public void setMetadata(Object metadata) {
this.metadata = metadata;
}
public PromotionsTiersEnableResponseBody hierarchy(Integer hierarchy) {
this.hierarchy = hierarchy;
return this;
}
/**
* The promotions hierarchy defines the order in which the discounts from different tiers will be applied to a customer's order. If a customer qualifies for discounts from more than one tier, discounts will be applied in the order defined in the hierarchy.
* @return hierarchy
**/
@javax.annotation.Nullable
public Integer getHierarchy() {
return hierarchy;
}
public void setHierarchy(Integer hierarchy) {
this.hierarchy = hierarchy;
}
public PromotionsTiersEnableResponseBody promotionId(String promotionId) {
this.promotionId = promotionId;
return this;
}
/**
* Promotion unique ID.
* @return promotionId
**/
@javax.annotation.Nullable
public String getPromotionId() {
return promotionId;
}
public void setPromotionId(String promotionId) {
this.promotionId = promotionId;
}
public PromotionsTiersEnableResponseBody campaign(PromotionTierCampaign campaign) {
this.campaign = campaign;
return this;
}
/**
* Get campaign
* @return campaign
**/
@javax.annotation.Nullable
public PromotionTierCampaign getCampaign() {
return campaign;
}
public void setCampaign(PromotionTierCampaign campaign) {
this.campaign = campaign;
}
public PromotionsTiersEnableResponseBody campaignId(String campaignId) {
this.campaignId = campaignId;
return this;
}
/**
* Promotion tier's parent campaign's unique ID.
* @return campaignId
**/
@javax.annotation.Nullable
public String getCampaignId() {
return campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
}
public PromotionsTiersEnableResponseBody active(Boolean active) {
this.active = active;
return this;
}
/**
* A flag to toggle the promotion tier on or off. You can disable a promotion tier even though it's within the active period defined by the `start_date` and `expiration_date`. - `true` indicates an *active* promotion tier - `false` indicates an *inactive* promotion tier
* @return active
**/
@javax.annotation.Nullable
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public PromotionsTiersEnableResponseBody startDate(OffsetDateTime startDate) {
this.startDate = startDate;
return this;
}
/**
* Activation timestamp defines when the promotion tier starts to be active in ISO 8601 format. Promotion tier is *inactive before* this date.
* @return startDate
**/
@javax.annotation.Nullable
public OffsetDateTime getStartDate() {
return startDate;
}
public void setStartDate(OffsetDateTime startDate) {
this.startDate = startDate;
}
public PromotionsTiersEnableResponseBody expirationDate(OffsetDateTime expirationDate) {
this.expirationDate = expirationDate;
return this;
}
/**
* Activation timestamp defines when the promotion tier expires in ISO 8601 format. Promotion tier is *inactive after* this date.
* @return expirationDate
**/
@javax.annotation.Nullable
public OffsetDateTime getExpirationDate() {
return expirationDate;
}
public void setExpirationDate(OffsetDateTime expirationDate) {
this.expirationDate = expirationDate;
}
public PromotionsTiersEnableResponseBody validityTimeframe(PromotionTierValidityTimeframe validityTimeframe) {
this.validityTimeframe = validityTimeframe;
return this;
}
/**
* Get validityTimeframe
* @return validityTimeframe
**/
@javax.annotation.Nullable
public PromotionTierValidityTimeframe getValidityTimeframe() {
return validityTimeframe;
}
public void setValidityTimeframe(PromotionTierValidityTimeframe validityTimeframe) {
this.validityTimeframe = validityTimeframe;
}
public PromotionsTiersEnableResponseBody validityDayOfWeek(List<Integer> validityDayOfWeek) {
this.validityDayOfWeek = validityDayOfWeek;
return this;
}
public PromotionsTiersEnableResponseBody addValidityDayOfWeekItem(Integer validityDayOfWeekItem) {
if (this.validityDayOfWeek == null) {
this.validityDayOfWeek = new ArrayList<>();
}
this.validityDayOfWeek.add(validityDayOfWeekItem);
return this;
}
/**
* Integer array corresponding to the particular days of the week in which the promotion tier is valid. - `0` Sunday - `1` Monday - `2` Tuesday - `3` Wednesday - `4` Thursday - `5` Friday - `6` Saturday
* @return validityDayOfWeek
**/
@javax.annotation.Nullable
public List<Integer> getValidityDayOfWeek() {
return validityDayOfWeek;
}
public void setValidityDayOfWeek(List<Integer> validityDayOfWeek) {
this.validityDayOfWeek = validityDayOfWeek;
}
public PromotionsTiersEnableResponseBody validityHours(ValidityHours validityHours) {
this.validityHours = validityHours;
return this;
}
/**
* Get validityHours
* @return validityHours
**/
@javax.annotation.Nullable
public ValidityHours getValidityHours() {
return validityHours;
}
public void setValidityHours(ValidityHours validityHours) {
this.validityHours = validityHours;
}
public PromotionsTiersEnableResponseBody summary(PromotionTierSummary summary) {
this.summary = summary;
return this;
}
/**
* Get summary
* @return summary
**/
@javax.annotation.Nullable
public PromotionTierSummary getSummary() {
return summary;
}
public void setSummary(PromotionTierSummary summary) {
this.summary = summary;
}
public PromotionsTiersEnableResponseBody _object(String _object) {
this._object = _object;
return this;
}
/**
* The type of the object represented by JSON. This object stores information about the promotion tier.
* @return _object
**/
@javax.annotation.Nullable
public String getObject() {
return _object;
}
public void setObject(String _object) {
this._object = _object;
}
public PromotionsTiersEnableResponseBody validationRuleAssignments(ValidationRuleAssignmentsList validationRuleAssignments) {
this.validationRuleAssignments = validationRuleAssignments;
return this;
}
/**
* Get validationRuleAssignments
* @return validationRuleAssignments
**/
@javax.annotation.Nullable
public ValidationRuleAssignmentsList getValidationRuleAssignments() {
return validationRuleAssignments;
}
public void setValidationRuleAssignments(ValidationRuleAssignmentsList validationRuleAssignments) {
this.validationRuleAssignments = validationRuleAssignments;
}
public PromotionsTiersEnableResponseBody categoryId(String categoryId) {
this.categoryId = categoryId;
return this;
}
/**
* Promotion tier category ID.
* @return categoryId
**/
@javax.annotation.Nullable
public String getCategoryId() {
return categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
public PromotionsTiersEnableResponseBody categories(List<Category> categories) {
this.categories = categories;
return this;
}
public PromotionsTiersEnableResponseBody addCategoriesItem(Category categoriesItem) {
if (this.categories == null) {
this.categories = new ArrayList<>();
}
this.categories.add(categoriesItem);
return this;
}
/**
* Get categories
* @return categories
**/
@javax.annotation.Nullable
public List<Category> getCategories() {
return categories;
}
public void setCategories(List<Category> categories) {
this.categories = categories;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PromotionsTiersEnableResponseBody promotionsTiersEnableResponseBody = (PromotionsTiersEnableResponseBody) o;
return Objects.equals(this.id, promotionsTiersEnableResponseBody.id) &&
Objects.equals(this.createdAt, promotionsTiersEnableResponseBody.createdAt) &&
Objects.equals(this.updatedAt, promotionsTiersEnableResponseBody.updatedAt) &&
Objects.equals(this.name, promotionsTiersEnableResponseBody.name) &&
Objects.equals(this.banner, promotionsTiersEnableResponseBody.banner) &&
Objects.equals(this.action, promotionsTiersEnableResponseBody.action) &&
Objects.equals(this.metadata, promotionsTiersEnableResponseBody.metadata) &&
Objects.equals(this.hierarchy, promotionsTiersEnableResponseBody.hierarchy) &&
Objects.equals(this.promotionId, promotionsTiersEnableResponseBody.promotionId) &&
Objects.equals(this.campaign, promotionsTiersEnableResponseBody.campaign) &&
Objects.equals(this.campaignId, promotionsTiersEnableResponseBody.campaignId) &&
Objects.equals(this.active, promotionsTiersEnableResponseBody.active) &&
Objects.equals(this.startDate, promotionsTiersEnableResponseBody.startDate) &&
Objects.equals(this.expirationDate, promotionsTiersEnableResponseBody.expirationDate) &&
Objects.equals(this.validityTimeframe, promotionsTiersEnableResponseBody.validityTimeframe) &&
Objects.equals(this.validityDayOfWeek, promotionsTiersEnableResponseBody.validityDayOfWeek) &&
Objects.equals(this.validityHours, promotionsTiersEnableResponseBody.validityHours) &&
Objects.equals(this.summary, promotionsTiersEnableResponseBody.summary) &&
Objects.equals(this._object, promotionsTiersEnableResponseBody._object) &&
Objects.equals(this.validationRuleAssignments, promotionsTiersEnableResponseBody.validationRuleAssignments) &&
Objects.equals(this.categoryId, promotionsTiersEnableResponseBody.categoryId) &&
Objects.equals(this.categories, promotionsTiersEnableResponseBody.categories);
}
@Override
public int hashCode() {
return Objects.hash(id, createdAt, updatedAt, name, banner, action, metadata, hierarchy, promotionId, campaign, campaignId, active, startDate, expirationDate, validityTimeframe, validityDayOfWeek, validityHours, summary, _object, validationRuleAssignments, categoryId, categories);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PromotionsTiersEnableResponseBody {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" banner: ").append(toIndentedString(banner)).append("\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" hierarchy: ").append(toIndentedString(hierarchy)).append("\n");
sb.append(" promotionId: ").append(toIndentedString(promotionId)).append("\n");
sb.append(" campaign: ").append(toIndentedString(campaign)).append("\n");
sb.append(" campaignId: ").append(toIndentedString(campaignId)).append("\n");
sb.append(" active: ").append(toIndentedString(active)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n");
sb.append(" validityTimeframe: ").append(toIndentedString(validityTimeframe)).append("\n");
sb.append(" validityDayOfWeek: ").append(toIndentedString(validityDayOfWeek)).append("\n");
sb.append(" validityHours: ").append(toIndentedString(validityHours)).append("\n");
sb.append(" summary: ").append(toIndentedString(summary)).append("\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" validationRuleAssignments: ").append(toIndentedString(validationRuleAssignments)).append("\n");
sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n");
sb.append(" categories: ").append(toIndentedString(categories)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
public static HashSet<String> openapiFields;
public static HashSet<String> openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet<String>();
openapiFields.add("id");
openapiFields.add("created_at");
openapiFields.add("updated_at");
openapiFields.add("name");
openapiFields.add("banner");
openapiFields.add("action");
openapiFields.add("metadata");
openapiFields.add("hierarchy");
openapiFields.add("promotion_id");
openapiFields.add("campaign");
openapiFields.add("campaign_id");
openapiFields.add("active");
openapiFields.add("start_date");
openapiFields.add("expiration_date");
openapiFields.add("validity_timeframe");
openapiFields.add("validity_day_of_week");
openapiFields.add("validity_hours");
openapiFields.add("summary");
openapiFields.add("object");
openapiFields.add("validation_rule_assignments");
openapiFields.add("category_id");
openapiFields.add("categories");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet<String>();
}
/**
* Validates the JSON Element and throws an exception if issues found
*
* @param jsonElement JSON Element
* @throws IOException if the JSON Element is invalid with respect to PromotionsTiersEnableResponseBody
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!PromotionsTiersEnableResponseBody.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in PromotionsTiersEnableResponseBody is not found in the empty JSON string", PromotionsTiersEnableResponseBody.openapiRequiredFields.toString()));
}
}
Set<Map.Entry<String, JsonElement>> entries = jsonElement.getAsJsonObject().entrySet();
// check to see if the JSON string contains additional fields
for (Map.Entry<String, JsonElement> entry : entries) {
if (!PromotionsTiersEnableResponseBody.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `PromotionsTiersEnableResponseBody` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if ((jsonObj.get("id") != null && !jsonObj.get("id").isJsonNull()) && !jsonObj.get("id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("id").toString()));
}
if ((jsonObj.get("name") != null && !jsonObj.get("name").isJsonNull()) && !jsonObj.get("name").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("name").toString()));
}
if ((jsonObj.get("banner") != null && !jsonObj.get("banner").isJsonNull()) && !jsonObj.get("banner").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `banner` to be a primitive type in the JSON string but got `%s`", jsonObj.get("banner").toString()));
}
// validate the optional field `action`
if (jsonObj.get("action") != null && !jsonObj.get("action").isJsonNull()) {
PromotionTierAction.validateJsonElement(jsonObj.get("action"));
}
if ((jsonObj.get("promotion_id") != null && !jsonObj.get("promotion_id").isJsonNull()) && !jsonObj.get("promotion_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `promotion_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("promotion_id").toString()));
}
// validate the optional field `campaign`
if (jsonObj.get("campaign") != null && !jsonObj.get("campaign").isJsonNull()) {
PromotionTierCampaign.validateJsonElement(jsonObj.get("campaign"));
}
if ((jsonObj.get("campaign_id") != null && !jsonObj.get("campaign_id").isJsonNull()) && !jsonObj.get("campaign_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `campaign_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("campaign_id").toString()));
}
// validate the optional field `validity_timeframe`
if (jsonObj.get("validity_timeframe") != null && !jsonObj.get("validity_timeframe").isJsonNull()) {
PromotionTierValidityTimeframe.validateJsonElement(jsonObj.get("validity_timeframe"));
}
// ensure the optional json data is an array if present
if (jsonObj.get("validity_day_of_week") != null && !jsonObj.get("validity_day_of_week").isJsonNull() && !jsonObj.get("validity_day_of_week").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `validity_day_of_week` to be an array in the JSON string but got `%s`", jsonObj.get("validity_day_of_week").toString()));
}
// validate the optional field `validity_hours`
if (jsonObj.get("validity_hours") != null && !jsonObj.get("validity_hours").isJsonNull()) {
ValidityHours.validateJsonElement(jsonObj.get("validity_hours"));
}
// validate the optional field `summary`
if (jsonObj.get("summary") != null && !jsonObj.get("summary").isJsonNull()) {
PromotionTierSummary.validateJsonElement(jsonObj.get("summary"));
}
if ((jsonObj.get("object") != null && !jsonObj.get("object").isJsonNull()) && !jsonObj.get("object").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `object` to be a primitive type in the JSON string but got `%s`", jsonObj.get("object").toString()));
}
// validate the optional field `validation_rule_assignments`
if (jsonObj.get("validation_rule_assignments") != null && !jsonObj.get("validation_rule_assignments").isJsonNull()) {
ValidationRuleAssignmentsList.validateJsonElement(jsonObj.get("validation_rule_assignments"));
}
if ((jsonObj.get("category_id") != null && !jsonObj.get("category_id").isJsonNull()) && !jsonObj.get("category_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `category_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("category_id").toString()));
}
if (jsonObj.get("categories") != null && !jsonObj.get("categories").isJsonNull()) {
JsonArray jsonArraycategories = jsonObj.getAsJsonArray("categories");
if (jsonArraycategories != null) {
// ensure the json data is an array
if (!jsonObj.get("categories").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `categories` to be an array in the JSON string but got `%s`", jsonObj.get("categories").toString()));
}
// validate the optional field `categories` (array)
for (int i = 0; i < jsonArraycategories.size(); i++) {
Category.validateJsonElement(jsonArraycategories.get(i));
};
}
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
if (!PromotionsTiersEnableResponseBody.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'PromotionsTiersEnableResponseBody' and its subtypes
}
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter<PromotionsTiersEnableResponseBody> thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(PromotionsTiersEnableResponseBody.class));
return (TypeAdapter<T>) new TypeAdapter<PromotionsTiersEnableResponseBody>() {
@Override
public void write(JsonWriter out, PromotionsTiersEnableResponseBody value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public PromotionsTiersEnableResponseBody read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of PromotionsTiersEnableResponseBody given an JSON string
*
* @param jsonString JSON string
* @return An instance of PromotionsTiersEnableResponseBody
* @throws IOException if the JSON string is invalid with respect to PromotionsTiersEnableResponseBody
*/
public static PromotionsTiersEnableResponseBody fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, PromotionsTiersEnableResponseBody.class);
}
/**
* Convert an instance of PromotionsTiersEnableResponseBody to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}