-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBlockedWebhook.java
More file actions
437 lines (380 loc) · 16 KB
/
BlockedWebhook.java
File metadata and controls
437 lines (380 loc) · 16 KB
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
/*
* Bandwidth
* Bandwidth's Communication APIs
*
* The version of the OpenAPI document: 1.0.0
* Contact: letstalk@bandwidth.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.bandwidth.sdk.model;
import java.util.Objects;
import com.bandwidth.sdk.model.TfvCallbackStatusEnum;
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.Arrays;
import java.util.UUID;
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.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.bandwidth.sdk.JSON;
/**
* BlockedWebhook
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.10.0")
public class BlockedWebhook {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "accountId";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
@javax.annotation.Nullable
private String accountId;
public static final String SERIALIZED_NAME_PHONE_NUMBER = "phoneNumber";
@SerializedName(SERIALIZED_NAME_PHONE_NUMBER)
@javax.annotation.Nullable
private String phoneNumber;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
@javax.annotation.Nullable
private TfvCallbackStatusEnum status;
public static final String SERIALIZED_NAME_INTERNAL_TICKET_NUMBER = "internalTicketNumber";
@SerializedName(SERIALIZED_NAME_INTERNAL_TICKET_NUMBER)
@javax.annotation.Nullable
private UUID internalTicketNumber;
public static final String SERIALIZED_NAME_BLOCKED = "blocked";
@SerializedName(SERIALIZED_NAME_BLOCKED)
@javax.annotation.Nullable
private Boolean blocked;
public static final String SERIALIZED_NAME_BLOCKED_REASON = "blockedReason";
@SerializedName(SERIALIZED_NAME_BLOCKED_REASON)
@javax.annotation.Nullable
private String blockedReason;
public BlockedWebhook() {
}
public BlockedWebhook accountId(@javax.annotation.Nullable String accountId) {
this.accountId = accountId;
return this;
}
/**
* User's account ID.
* @return accountId
*/
@javax.annotation.Nullable
public String getAccountId() {
return accountId;
}
public void setAccountId(@javax.annotation.Nullable String accountId) {
this.accountId = accountId;
}
public BlockedWebhook phoneNumber(@javax.annotation.Nullable String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* Toll-free telephone number in E.164 format.
* @return phoneNumber
*/
@javax.annotation.Nullable
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(@javax.annotation.Nullable String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public BlockedWebhook status(@javax.annotation.Nullable TfvCallbackStatusEnum status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
*/
@javax.annotation.Nullable
public TfvCallbackStatusEnum getStatus() {
return status;
}
public void setStatus(@javax.annotation.Nullable TfvCallbackStatusEnum status) {
this.status = status;
}
public BlockedWebhook internalTicketNumber(@javax.annotation.Nullable UUID internalTicketNumber) {
this.internalTicketNumber = internalTicketNumber;
return this;
}
/**
* Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number.
* @return internalTicketNumber
*/
@javax.annotation.Nullable
public UUID getInternalTicketNumber() {
return internalTicketNumber;
}
public void setInternalTicketNumber(@javax.annotation.Nullable UUID internalTicketNumber) {
this.internalTicketNumber = internalTicketNumber;
}
public BlockedWebhook blocked(@javax.annotation.Nullable Boolean blocked) {
this.blocked = blocked;
return this;
}
/**
* Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked.
* @return blocked
*/
@javax.annotation.Nullable
public Boolean getBlocked() {
return blocked;
}
public void setBlocked(@javax.annotation.Nullable Boolean blocked) {
this.blocked = blocked;
}
public BlockedWebhook blockedReason(@javax.annotation.Nullable String blockedReason) {
this.blockedReason = blockedReason;
return this;
}
/**
* The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked.
* @return blockedReason
*/
@javax.annotation.Nullable
public String getBlockedReason() {
return blockedReason;
}
public void setBlockedReason(@javax.annotation.Nullable String blockedReason) {
this.blockedReason = blockedReason;
}
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
private Map<String, Object> additionalProperties;
/**
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
*
* @param key name of the property
* @param value value of the property
* @return the BlockedWebhook instance itself
*/
public BlockedWebhook putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap<String, Object>();
}
this.additionalProperties.put(key, value);
return this;
}
/**
* Return the additional (undeclared) property.
*
* @return a map of objects
*/
public Map<String, Object> getAdditionalProperties() {
return additionalProperties;
}
/**
* Return the additional (undeclared) property with the specified name.
*
* @param key name of the property
* @return an object
*/
public Object getAdditionalProperty(String key) {
if (this.additionalProperties == null) {
return null;
}
return this.additionalProperties.get(key);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BlockedWebhook blockedWebhook = (BlockedWebhook) o;
return Objects.equals(this.accountId, blockedWebhook.accountId) &&
Objects.equals(this.phoneNumber, blockedWebhook.phoneNumber) &&
Objects.equals(this.status, blockedWebhook.status) &&
Objects.equals(this.internalTicketNumber, blockedWebhook.internalTicketNumber) &&
Objects.equals(this.blocked, blockedWebhook.blocked) &&
Objects.equals(this.blockedReason, blockedWebhook.blockedReason)&&
Objects.equals(this.additionalProperties, blockedWebhook.additionalProperties);
}
@Override
public int hashCode() {
return Objects.hash(accountId, phoneNumber, status, internalTicketNumber, blocked, blockedReason, additionalProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BlockedWebhook {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" internalTicketNumber: ").append(toIndentedString(internalTicketNumber)).append("\n");
sb.append(" blocked: ").append(toIndentedString(blocked)).append("\n");
sb.append(" blockedReason: ").append(toIndentedString(blockedReason)).append("\n");
sb.append(" additionalProperties: ").append(toIndentedString(additionalProperties)).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("accountId");
openapiFields.add("phoneNumber");
openapiFields.add("status");
openapiFields.add("internalTicketNumber");
openapiFields.add("blocked");
openapiFields.add("blockedReason");
// 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 BlockedWebhook
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!BlockedWebhook.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in BlockedWebhook is not found in the empty JSON string", BlockedWebhook.openapiRequiredFields.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if ((jsonObj.get("accountId") != null && !jsonObj.get("accountId").isJsonNull()) && !jsonObj.get("accountId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `accountId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("accountId").toString()));
}
if ((jsonObj.get("phoneNumber") != null && !jsonObj.get("phoneNumber").isJsonNull()) && !jsonObj.get("phoneNumber").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `phoneNumber` to be a primitive type in the JSON string but got `%s`", jsonObj.get("phoneNumber").toString()));
}
// validate the optional field `status`
if (jsonObj.get("status") != null && !jsonObj.get("status").isJsonNull()) {
TfvCallbackStatusEnum.validateJsonElement(jsonObj.get("status"));
}
if ((jsonObj.get("internalTicketNumber") != null && !jsonObj.get("internalTicketNumber").isJsonNull()) && !jsonObj.get("internalTicketNumber").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `internalTicketNumber` to be a primitive type in the JSON string but got `%s`", jsonObj.get("internalTicketNumber").toString()));
}
if ((jsonObj.get("blockedReason") != null && !jsonObj.get("blockedReason").isJsonNull()) && !jsonObj.get("blockedReason").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `blockedReason` to be a primitive type in the JSON string but got `%s`", jsonObj.get("blockedReason").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
if (!BlockedWebhook.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'BlockedWebhook' and its subtypes
}
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter<BlockedWebhook> thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(BlockedWebhook.class));
return (TypeAdapter<T>) new TypeAdapter<BlockedWebhook>() {
@Override
public void write(JsonWriter out, BlockedWebhook value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
// serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry<String, Object> entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
obj.addProperty(entry.getKey(), (String) entry.getValue());
else if (entry.getValue() instanceof Number)
obj.addProperty(entry.getKey(), (Number) entry.getValue());
else if (entry.getValue() instanceof Boolean)
obj.addProperty(entry.getKey(), (Boolean) entry.getValue());
else if (entry.getValue() instanceof Character)
obj.addProperty(entry.getKey(), (Character) entry.getValue());
else {
JsonElement jsonElement = gson.toJsonTree(entry.getValue());
if (jsonElement.isJsonArray()) {
obj.add(entry.getKey(), jsonElement.getAsJsonArray());
} else {
obj.add(entry.getKey(), jsonElement.getAsJsonObject());
}
}
}
}
elementAdapter.write(out, obj);
}
@Override
public BlockedWebhook read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
JsonObject jsonObj = jsonElement.getAsJsonObject();
// store additional fields in the deserialized instance
BlockedWebhook instance = thisAdapter.fromJsonTree(jsonObj);
for (Map.Entry<String, JsonElement> entry : jsonObj.entrySet()) {
if (!openapiFields.contains(entry.getKey())) {
if (entry.getValue().isJsonPrimitive()) { // primitive type
if (entry.getValue().getAsJsonPrimitive().isString())
instance.putAdditionalProperty(entry.getKey(), entry.getValue().getAsString());
else if (entry.getValue().getAsJsonPrimitive().isNumber())
instance.putAdditionalProperty(entry.getKey(), entry.getValue().getAsNumber());
else if (entry.getValue().getAsJsonPrimitive().isBoolean())
instance.putAdditionalProperty(entry.getKey(), entry.getValue().getAsBoolean());
else
throw new IllegalArgumentException(String.format("The field `%s` has unknown primitive type. Value: %s", entry.getKey(), entry.getValue().toString()));
} else if (entry.getValue().isJsonArray()) {
instance.putAdditionalProperty(entry.getKey(), gson.fromJson(entry.getValue(), List.class));
} else { // JSON object
instance.putAdditionalProperty(entry.getKey(), gson.fromJson(entry.getValue(), HashMap.class));
}
}
}
return instance;
}
}.nullSafe();
}
}
/**
* Create an instance of BlockedWebhook given an JSON string
*
* @param jsonString JSON string
* @return An instance of BlockedWebhook
* @throws IOException if the JSON string is invalid with respect to BlockedWebhook
*/
public static BlockedWebhook fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, BlockedWebhook.class);
}
/**
* Convert an instance of BlockedWebhook to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}