forked from voucherifyio/sdk-java-openapi-based
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPromotionsStacksCreateResponseBody.java
526 lines (430 loc) · 17.2 KB
/
PromotionsStacksCreateResponseBody.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
/*
* 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 org.openapitools.jackson.nullable.JsonNullable;
import voucherify.client.model.PromotionStackBase;
import voucherify.client.model.PromotionStackBaseTiers;
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/{campaignId}/stacks`.
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PromotionsStacksCreateResponseBody {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_TIERS = "tiers";
@SerializedName(SERIALIZED_NAME_TIERS)
private PromotionStackBaseTiers tiers;
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_CAMPAIGN_ID = "campaign_id";
@SerializedName(SERIALIZED_NAME_CAMPAIGN_ID)
private String campaignId;
/**
* The type of the object represented by JSON.
*/
@JsonAdapter(ObjectEnum.Adapter.class)
public enum ObjectEnum {
PROMOTION_STACK("promotion_stack");
private String value;
ObjectEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ObjectEnum fromValue(String value) {
for (ObjectEnum b : ObjectEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter<ObjectEnum> {
@Override
public void write(final JsonWriter jsonWriter, final ObjectEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ObjectEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ObjectEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_OBJECT = "object";
@SerializedName(SERIALIZED_NAME_OBJECT)
private ObjectEnum _object = ObjectEnum.PROMOTION_STACK;
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<PromotionStackBase> categories = new ArrayList<>();
public PromotionsStacksCreateResponseBody() {
}
public PromotionsStacksCreateResponseBody name(String name) {
this.name = name;
return this;
}
/**
* Promotion stack name.
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public PromotionsStacksCreateResponseBody tiers(PromotionStackBaseTiers tiers) {
this.tiers = tiers;
return this;
}
/**
* Get tiers
* @return tiers
**/
@javax.annotation.Nonnull
public PromotionStackBaseTiers getTiers() {
return tiers;
}
public void setTiers(PromotionStackBaseTiers tiers) {
this.tiers = tiers;
}
public PromotionsStacksCreateResponseBody id(String id) {
this.id = id;
return this;
}
/**
* Unique promotion stack ID.
* @return id
**/
@javax.annotation.Nonnull
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public PromotionsStacksCreateResponseBody createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Timestamp representing the date and time when the promotion stack was created. The value is shown in the ISO 8601 format.
* @return createdAt
**/
@javax.annotation.Nonnull
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public PromotionsStacksCreateResponseBody campaignId(String campaignId) {
this.campaignId = campaignId;
return this;
}
/**
* Promotion stack's parent campaign's unique ID.
* @return campaignId
**/
@javax.annotation.Nonnull
public String getCampaignId() {
return campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
}
public PromotionsStacksCreateResponseBody _object(ObjectEnum _object) {
this._object = _object;
return this;
}
/**
* The type of the object represented by JSON.
* @return _object
**/
@javax.annotation.Nonnull
public ObjectEnum getObject() {
return _object;
}
public void setObject(ObjectEnum _object) {
this._object = _object;
}
public PromotionsStacksCreateResponseBody categoryId(String categoryId) {
this.categoryId = categoryId;
return this;
}
/**
* Promotion stack category ID.
* @return categoryId
**/
@javax.annotation.Nullable
public String getCategoryId() {
return categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
public PromotionsStacksCreateResponseBody categories(List<PromotionStackBase> categories) {
this.categories = categories;
return this;
}
public PromotionsStacksCreateResponseBody addCategoriesItem(PromotionStackBase categoriesItem) {
if (this.categories == null) {
this.categories = new ArrayList<>();
}
this.categories.add(categoriesItem);
return this;
}
/**
* Details about the category assigned to the promotion stack.
* @return categories
**/
@javax.annotation.Nonnull
public List<PromotionStackBase> getCategories() {
return categories;
}
public void setCategories(List<PromotionStackBase> categories) {
this.categories = categories;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PromotionsStacksCreateResponseBody promotionsStacksCreateResponseBody = (PromotionsStacksCreateResponseBody) o;
return Objects.equals(this.name, promotionsStacksCreateResponseBody.name) &&
Objects.equals(this.tiers, promotionsStacksCreateResponseBody.tiers) &&
Objects.equals(this.id, promotionsStacksCreateResponseBody.id) &&
Objects.equals(this.createdAt, promotionsStacksCreateResponseBody.createdAt) &&
Objects.equals(this.campaignId, promotionsStacksCreateResponseBody.campaignId) &&
Objects.equals(this._object, promotionsStacksCreateResponseBody._object) &&
Objects.equals(this.categoryId, promotionsStacksCreateResponseBody.categoryId) &&
Objects.equals(this.categories, promotionsStacksCreateResponseBody.categories);
}
private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(name, tiers, id, createdAt, campaignId, _object, categoryId, categories);
}
private static <T> int hashCodeNullable(JsonNullable<T> a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PromotionsStacksCreateResponseBody {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" tiers: ").append(toIndentedString(tiers)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" campaignId: ").append(toIndentedString(campaignId)).append("\n");
sb.append(" _object: ").append(toIndentedString(_object)).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("name");
openapiFields.add("tiers");
openapiFields.add("id");
openapiFields.add("created_at");
openapiFields.add("campaign_id");
openapiFields.add("object");
openapiFields.add("category_id");
openapiFields.add("categories");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet<String>();
openapiRequiredFields.add("name");
openapiRequiredFields.add("tiers");
openapiRequiredFields.add("id");
openapiRequiredFields.add("created_at");
openapiRequiredFields.add("campaign_id");
openapiRequiredFields.add("object");
openapiRequiredFields.add("categories");
}
/**
* 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 PromotionsStacksCreateResponseBody
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!PromotionsStacksCreateResponseBody.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in PromotionsStacksCreateResponseBody is not found in the empty JSON string", PromotionsStacksCreateResponseBody.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 (!PromotionsStacksCreateResponseBody.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `PromotionsStacksCreateResponseBody` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : PromotionsStacksCreateResponseBody.openapiRequiredFields) {
if (jsonElement.getAsJsonObject().get(requiredField) == null) {
throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonElement.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if (!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()));
}
// validate the required field `tiers`
PromotionStackBaseTiers.validateJsonElement(jsonObj.get("tiers"));
if (!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("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()));
}
if (!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()));
}
try {
JsonElement objectElement = jsonObj.get("object");
if (objectElement != null && !objectElement.isJsonNull()) {
ObjectEnum.fromValue(objectElement.getAsString());
} else {
throw new IllegalArgumentException("Expected the field `object` to be not null");
}
} catch (IllegalArgumentException e) {
if(jsonObj.get("object") != null) {
throw new IllegalArgumentException(String.format("Expected the field `object` to be a valid element of ObjectEnum enum got `%s` instead", jsonObj.get("object").toString()));
}
}
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()));
}
// 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()));
}
JsonArray jsonArraycategories = jsonObj.getAsJsonArray("categories");
// validate the required field `categories` (array)
for (int i = 0; i < jsonArraycategories.size(); i++) {
PromotionStackBase.validateJsonElement(jsonArraycategories.get(i));
};
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
if (!PromotionsStacksCreateResponseBody.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'PromotionsStacksCreateResponseBody' and its subtypes
}
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter<PromotionsStacksCreateResponseBody> thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(PromotionsStacksCreateResponseBody.class));
return (TypeAdapter<T>) new TypeAdapter<PromotionsStacksCreateResponseBody>() {
@Override
public void write(JsonWriter out, PromotionsStacksCreateResponseBody value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public PromotionsStacksCreateResponseBody read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of PromotionsStacksCreateResponseBody given an JSON string
*
* @param jsonString JSON string
* @return An instance of PromotionsStacksCreateResponseBody
* @throws IOException if the JSON string is invalid with respect to PromotionsStacksCreateResponseBody
*/
public static PromotionsStacksCreateResponseBody fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, PromotionsStacksCreateResponseBody.class);
}
/**
* Convert an instance of PromotionsStacksCreateResponseBody to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}