forked from voucherifyio/sdk-java-openapi-based
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoyaltiesTiersRewardsListResponseBody.java
328 lines (271 loc) · 11.1 KB
/
LoyaltiesTiersRewardsListResponseBody.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
/*
* 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.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import voucherify.client.model.LoyaltiesLoyaltyTierReward;
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 **GET** `/loyalties/{campaignId}/tiers/{loyaltyTierId}/rewards`.
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class LoyaltiesTiersRewardsListResponseBody {
public static final String SERIALIZED_NAME_OBJECT = "object";
@SerializedName(SERIALIZED_NAME_OBJECT)
private String _object = "list";
public static final String SERIALIZED_NAME_DATA_REF = "data_ref";
@SerializedName(SERIALIZED_NAME_DATA_REF)
private String dataRef = "data";
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private List<LoyaltiesLoyaltyTierReward> data = new ArrayList<>();
public static final String SERIALIZED_NAME_TOTAL = "total";
@SerializedName(SERIALIZED_NAME_TOTAL)
private Integer total;
public LoyaltiesTiersRewardsListResponseBody() {
}
public LoyaltiesTiersRewardsListResponseBody _object(String _object) {
this._object = _object;
return this;
}
/**
* The type of the object represented by JSON. This object stores information about loyalty tier rewards in a dictionary.
* @return _object
**/
@javax.annotation.Nonnull
public String getObject() {
return _object;
}
public void setObject(String _object) {
this._object = _object;
}
public LoyaltiesTiersRewardsListResponseBody dataRef(String dataRef) {
this.dataRef = dataRef;
return this;
}
/**
* Identifies the name of the attribute that contains the array of loyalty tier reward objects.
* @return dataRef
**/
@javax.annotation.Nonnull
public String getDataRef() {
return dataRef;
}
public void setDataRef(String dataRef) {
this.dataRef = dataRef;
}
public LoyaltiesTiersRewardsListResponseBody data(List<LoyaltiesLoyaltyTierReward> data) {
this.data = data;
return this;
}
public LoyaltiesTiersRewardsListResponseBody addDataItem(LoyaltiesLoyaltyTierReward dataItem) {
if (this.data == null) {
this.data = new ArrayList<>();
}
this.data.add(dataItem);
return this;
}
/**
* Contains array of loyalty tier reward objects.
* @return data
**/
@javax.annotation.Nonnull
public List<LoyaltiesLoyaltyTierReward> getData() {
return data;
}
public void setData(List<LoyaltiesLoyaltyTierReward> data) {
this.data = data;
}
public LoyaltiesTiersRewardsListResponseBody total(Integer total) {
this.total = total;
return this;
}
/**
* Total number of loyalty tier reward objects.
* @return total
**/
@javax.annotation.Nonnull
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LoyaltiesTiersRewardsListResponseBody loyaltiesTiersRewardsListResponseBody = (LoyaltiesTiersRewardsListResponseBody) o;
return Objects.equals(this._object, loyaltiesTiersRewardsListResponseBody._object) &&
Objects.equals(this.dataRef, loyaltiesTiersRewardsListResponseBody.dataRef) &&
Objects.equals(this.data, loyaltiesTiersRewardsListResponseBody.data) &&
Objects.equals(this.total, loyaltiesTiersRewardsListResponseBody.total);
}
@Override
public int hashCode() {
return Objects.hash(_object, dataRef, data, total);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LoyaltiesTiersRewardsListResponseBody {\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" dataRef: ").append(toIndentedString(dataRef)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" total: ").append(toIndentedString(total)).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("object");
openapiFields.add("data_ref");
openapiFields.add("data");
openapiFields.add("total");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet<String>();
openapiRequiredFields.add("object");
openapiRequiredFields.add("data_ref");
openapiRequiredFields.add("data");
openapiRequiredFields.add("total");
}
/**
* 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 LoyaltiesTiersRewardsListResponseBody
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!LoyaltiesTiersRewardsListResponseBody.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in LoyaltiesTiersRewardsListResponseBody is not found in the empty JSON string", LoyaltiesTiersRewardsListResponseBody.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 (!LoyaltiesTiersRewardsListResponseBody.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `LoyaltiesTiersRewardsListResponseBody` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : LoyaltiesTiersRewardsListResponseBody.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("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()));
}
if (!jsonObj.get("data_ref").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `data_ref` to be a primitive type in the JSON string but got `%s`", jsonObj.get("data_ref").toString()));
}
// ensure the json data is an array
if (!jsonObj.get("data").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `data` to be an array in the JSON string but got `%s`", jsonObj.get("data").toString()));
}
JsonArray jsonArraydata = jsonObj.getAsJsonArray("data");
// validate the required field `data` (array)
for (int i = 0; i < jsonArraydata.size(); i++) {
LoyaltiesLoyaltyTierReward.validateJsonElement(jsonArraydata.get(i));
};
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
if (!LoyaltiesTiersRewardsListResponseBody.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'LoyaltiesTiersRewardsListResponseBody' and its subtypes
}
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter<LoyaltiesTiersRewardsListResponseBody> thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(LoyaltiesTiersRewardsListResponseBody.class));
return (TypeAdapter<T>) new TypeAdapter<LoyaltiesTiersRewardsListResponseBody>() {
@Override
public void write(JsonWriter out, LoyaltiesTiersRewardsListResponseBody value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public LoyaltiesTiersRewardsListResponseBody read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of LoyaltiesTiersRewardsListResponseBody given an JSON string
*
* @param jsonString JSON string
* @return An instance of LoyaltiesTiersRewardsListResponseBody
* @throws IOException if the JSON string is invalid with respect to LoyaltiesTiersRewardsListResponseBody
*/
public static LoyaltiesTiersRewardsListResponseBody fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, LoyaltiesTiersRewardsListResponseBody.class);
}
/**
* Convert an instance of LoyaltiesTiersRewardsListResponseBody to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}