com.bandwidth.sdk.model.CreateCallResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
The newest version!
/*
* Bandwidth
* Bandwidth's Communication APIs
*
* The version of the OpenAPI document: 1.0.0
* 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 com.bandwidth.sdk.model;
import java.util.Objects;
import com.bandwidth.sdk.model.CallbackMethodEnum;
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.net.URI;
import java.time.OffsetDateTime;
import java.util.Arrays;
import org.openapitools.jackson.nullable.JsonNullable;
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 com.bandwidth.sdk.JSON;
/**
* CreateCallResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
public class CreateCallResponse {
public static final String SERIALIZED_NAME_APPLICATION_ID = "applicationId";
@SerializedName(SERIALIZED_NAME_APPLICATION_ID)
private String applicationId;
public static final String SERIALIZED_NAME_ACCOUNT_ID = "accountId";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
private String accountId;
public static final String SERIALIZED_NAME_CALL_ID = "callId";
@SerializedName(SERIALIZED_NAME_CALL_ID)
private String callId;
public static final String SERIALIZED_NAME_TO = "to";
@SerializedName(SERIALIZED_NAME_TO)
private String to;
public static final String SERIALIZED_NAME_FROM = "from";
@SerializedName(SERIALIZED_NAME_FROM)
private String from;
public static final String SERIALIZED_NAME_ENQUEUED_TIME = "enqueuedTime";
@SerializedName(SERIALIZED_NAME_ENQUEUED_TIME)
private OffsetDateTime enqueuedTime;
public static final String SERIALIZED_NAME_CALL_URL = "callUrl";
@SerializedName(SERIALIZED_NAME_CALL_URL)
private URI callUrl;
public static final String SERIALIZED_NAME_CALL_TIMEOUT = "callTimeout";
@SerializedName(SERIALIZED_NAME_CALL_TIMEOUT)
private Double callTimeout;
public static final String SERIALIZED_NAME_CALLBACK_TIMEOUT = "callbackTimeout";
@SerializedName(SERIALIZED_NAME_CALLBACK_TIMEOUT)
private Double callbackTimeout;
public static final String SERIALIZED_NAME_TAG = "tag";
@SerializedName(SERIALIZED_NAME_TAG)
private String tag;
public static final String SERIALIZED_NAME_ANSWER_METHOD = "answerMethod";
@SerializedName(SERIALIZED_NAME_ANSWER_METHOD)
private CallbackMethodEnum answerMethod = CallbackMethodEnum.POST;
public static final String SERIALIZED_NAME_ANSWER_URL = "answerUrl";
@SerializedName(SERIALIZED_NAME_ANSWER_URL)
private URI answerUrl;
public static final String SERIALIZED_NAME_ANSWER_FALLBACK_METHOD = "answerFallbackMethod";
@SerializedName(SERIALIZED_NAME_ANSWER_FALLBACK_METHOD)
private CallbackMethodEnum answerFallbackMethod = CallbackMethodEnum.POST;
public static final String SERIALIZED_NAME_ANSWER_FALLBACK_URL = "answerFallbackUrl";
@SerializedName(SERIALIZED_NAME_ANSWER_FALLBACK_URL)
private URI answerFallbackUrl;
public static final String SERIALIZED_NAME_DISCONNECT_METHOD = "disconnectMethod";
@SerializedName(SERIALIZED_NAME_DISCONNECT_METHOD)
private CallbackMethodEnum disconnectMethod = CallbackMethodEnum.POST;
public static final String SERIALIZED_NAME_DISCONNECT_URL = "disconnectUrl";
@SerializedName(SERIALIZED_NAME_DISCONNECT_URL)
private URI disconnectUrl;
public static final String SERIALIZED_NAME_USERNAME = "username";
@SerializedName(SERIALIZED_NAME_USERNAME)
private String username;
public static final String SERIALIZED_NAME_PASSWORD = "password";
@SerializedName(SERIALIZED_NAME_PASSWORD)
private String password;
public static final String SERIALIZED_NAME_FALLBACK_USERNAME = "fallbackUsername";
@SerializedName(SERIALIZED_NAME_FALLBACK_USERNAME)
private String fallbackUsername;
public static final String SERIALIZED_NAME_FALLBACK_PASSWORD = "fallbackPassword";
@SerializedName(SERIALIZED_NAME_FALLBACK_PASSWORD)
private String fallbackPassword;
public static final String SERIALIZED_NAME_PRIORITY = "priority";
@SerializedName(SERIALIZED_NAME_PRIORITY)
private Integer priority;
public CreateCallResponse() {
}
public CreateCallResponse applicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
/**
* The id of the application associated with the `from` number.
* @return applicationId
**/
@javax.annotation.Nonnull
public String getApplicationId() {
return applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public CreateCallResponse accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The bandwidth account ID associated with the call.
* @return accountId
**/
@javax.annotation.Nonnull
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public CreateCallResponse callId(String callId) {
this.callId = callId;
return this;
}
/**
* Programmable Voice API Call ID.
* @return callId
**/
@javax.annotation.Nonnull
public String getCallId() {
return callId;
}
public void setCallId(String callId) {
this.callId = callId;
}
public CreateCallResponse to(String to) {
this.to = to;
return this;
}
/**
* Recipient of the outgoing call.
* @return to
**/
@javax.annotation.Nonnull
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
public CreateCallResponse from(String from) {
this.from = from;
return this;
}
/**
* Phone number that created the outbound call.
* @return from
**/
@javax.annotation.Nonnull
public String getFrom() {
return from;
}
public void setFrom(String from) {
this.from = from;
}
public CreateCallResponse enqueuedTime(OffsetDateTime enqueuedTime) {
this.enqueuedTime = enqueuedTime;
return this;
}
/**
* The time at which the call was accepted into the queue.
* @return enqueuedTime
**/
@javax.annotation.Nullable
public OffsetDateTime getEnqueuedTime() {
return enqueuedTime;
}
public void setEnqueuedTime(OffsetDateTime enqueuedTime) {
this.enqueuedTime = enqueuedTime;
}
public CreateCallResponse callUrl(URI callUrl) {
this.callUrl = callUrl;
return this;
}
/**
* The URL to update this call's state.
* @return callUrl
**/
@javax.annotation.Nonnull
public URI getCallUrl() {
return callUrl;
}
public void setCallUrl(URI callUrl) {
this.callUrl = callUrl;
}
public CreateCallResponse callTimeout(Double callTimeout) {
this.callTimeout = callTimeout;
return this;
}
/**
* The timeout (in seconds) for the callee to answer the call after it starts ringing.
* @return callTimeout
**/
@javax.annotation.Nullable
public Double getCallTimeout() {
return callTimeout;
}
public void setCallTimeout(Double callTimeout) {
this.callTimeout = callTimeout;
}
public CreateCallResponse callbackTimeout(Double callbackTimeout) {
this.callbackTimeout = callbackTimeout;
return this;
}
/**
* This is the timeout (in seconds) to use when delivering webhooks for the call.
* @return callbackTimeout
**/
@javax.annotation.Nullable
public Double getCallbackTimeout() {
return callbackTimeout;
}
public void setCallbackTimeout(Double callbackTimeout) {
this.callbackTimeout = callbackTimeout;
}
public CreateCallResponse tag(String tag) {
this.tag = tag;
return this;
}
/**
* Custom tag value.
* @return tag
**/
@javax.annotation.Nullable
public String getTag() {
return tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public CreateCallResponse answerMethod(CallbackMethodEnum answerMethod) {
this.answerMethod = answerMethod;
return this;
}
/**
* Get answerMethod
* @return answerMethod
**/
@javax.annotation.Nullable
public CallbackMethodEnum getAnswerMethod() {
return answerMethod;
}
public void setAnswerMethod(CallbackMethodEnum answerMethod) {
this.answerMethod = answerMethod;
}
public CreateCallResponse answerUrl(URI answerUrl) {
this.answerUrl = answerUrl;
return this;
}
/**
* URL to deliver the `answer` event webhook.
* @return answerUrl
**/
@javax.annotation.Nonnull
public URI getAnswerUrl() {
return answerUrl;
}
public void setAnswerUrl(URI answerUrl) {
this.answerUrl = answerUrl;
}
public CreateCallResponse answerFallbackMethod(CallbackMethodEnum answerFallbackMethod) {
this.answerFallbackMethod = answerFallbackMethod;
return this;
}
/**
* Get answerFallbackMethod
* @return answerFallbackMethod
**/
@javax.annotation.Nullable
public CallbackMethodEnum getAnswerFallbackMethod() {
return answerFallbackMethod;
}
public void setAnswerFallbackMethod(CallbackMethodEnum answerFallbackMethod) {
this.answerFallbackMethod = answerFallbackMethod;
}
public CreateCallResponse answerFallbackUrl(URI answerFallbackUrl) {
this.answerFallbackUrl = answerFallbackUrl;
return this;
}
/**
* Fallback URL to deliver the `answer` event webhook.
* @return answerFallbackUrl
**/
@javax.annotation.Nullable
public URI getAnswerFallbackUrl() {
return answerFallbackUrl;
}
public void setAnswerFallbackUrl(URI answerFallbackUrl) {
this.answerFallbackUrl = answerFallbackUrl;
}
public CreateCallResponse disconnectMethod(CallbackMethodEnum disconnectMethod) {
this.disconnectMethod = disconnectMethod;
return this;
}
/**
* Get disconnectMethod
* @return disconnectMethod
**/
@javax.annotation.Nullable
public CallbackMethodEnum getDisconnectMethod() {
return disconnectMethod;
}
public void setDisconnectMethod(CallbackMethodEnum disconnectMethod) {
this.disconnectMethod = disconnectMethod;
}
public CreateCallResponse disconnectUrl(URI disconnectUrl) {
this.disconnectUrl = disconnectUrl;
return this;
}
/**
* URL to deliver the `disconnect` event webhook.
* @return disconnectUrl
**/
@javax.annotation.Nullable
public URI getDisconnectUrl() {
return disconnectUrl;
}
public void setDisconnectUrl(URI disconnectUrl) {
this.disconnectUrl = disconnectUrl;
}
public CreateCallResponse username(String username) {
this.username = username;
return this;
}
/**
* Basic auth username.
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public CreateCallResponse password(String password) {
this.password = password;
return this;
}
/**
* Basic auth password.
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public CreateCallResponse fallbackUsername(String fallbackUsername) {
this.fallbackUsername = fallbackUsername;
return this;
}
/**
* Basic auth username.
* @return fallbackUsername
**/
@javax.annotation.Nullable
public String getFallbackUsername() {
return fallbackUsername;
}
public void setFallbackUsername(String fallbackUsername) {
this.fallbackUsername = fallbackUsername;
}
public CreateCallResponse fallbackPassword(String fallbackPassword) {
this.fallbackPassword = fallbackPassword;
return this;
}
/**
* Basic auth password.
* @return fallbackPassword
**/
@javax.annotation.Nullable
public String getFallbackPassword() {
return fallbackPassword;
}
public void setFallbackPassword(String fallbackPassword) {
this.fallbackPassword = fallbackPassword;
}
public CreateCallResponse priority(Integer priority) {
this.priority = priority;
return this;
}
/**
* The priority of this call over other calls from your account.
* @return priority
**/
@javax.annotation.Nullable
public Integer getPriority() {
return priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
/**
* 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 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 CreateCallResponse instance itself
*/
public CreateCallResponse putAdditionalProperty(String key, Object value) {
if (this.additionalProperties == null) {
this.additionalProperties = new HashMap();
}
this.additionalProperties.put(key, value);
return this;
}
/**
* Return the additional (undeclared) property.
*
* @return a map of objects
*/
public Map 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;
}
CreateCallResponse createCallResponse = (CreateCallResponse) o;
return Objects.equals(this.applicationId, createCallResponse.applicationId) &&
Objects.equals(this.accountId, createCallResponse.accountId) &&
Objects.equals(this.callId, createCallResponse.callId) &&
Objects.equals(this.to, createCallResponse.to) &&
Objects.equals(this.from, createCallResponse.from) &&
Objects.equals(this.enqueuedTime, createCallResponse.enqueuedTime) &&
Objects.equals(this.callUrl, createCallResponse.callUrl) &&
Objects.equals(this.callTimeout, createCallResponse.callTimeout) &&
Objects.equals(this.callbackTimeout, createCallResponse.callbackTimeout) &&
Objects.equals(this.tag, createCallResponse.tag) &&
Objects.equals(this.answerMethod, createCallResponse.answerMethod) &&
Objects.equals(this.answerUrl, createCallResponse.answerUrl) &&
Objects.equals(this.answerFallbackMethod, createCallResponse.answerFallbackMethod) &&
Objects.equals(this.answerFallbackUrl, createCallResponse.answerFallbackUrl) &&
Objects.equals(this.disconnectMethod, createCallResponse.disconnectMethod) &&
Objects.equals(this.disconnectUrl, createCallResponse.disconnectUrl) &&
Objects.equals(this.username, createCallResponse.username) &&
Objects.equals(this.password, createCallResponse.password) &&
Objects.equals(this.fallbackUsername, createCallResponse.fallbackUsername) &&
Objects.equals(this.fallbackPassword, createCallResponse.fallbackPassword) &&
Objects.equals(this.priority, createCallResponse.priority)&&
Objects.equals(this.additionalProperties, createCallResponse.additionalProperties);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable 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(applicationId, accountId, callId, to, from, enqueuedTime, callUrl, callTimeout, callbackTimeout, tag, answerMethod, answerUrl, answerFallbackMethod, answerFallbackUrl, disconnectMethod, disconnectUrl, username, password, fallbackUsername, fallbackPassword, priority, additionalProperties);
}
private static int hashCodeNullable(JsonNullable 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 CreateCallResponse {\n");
sb.append(" applicationId: ").append(toIndentedString(applicationId)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" callId: ").append(toIndentedString(callId)).append("\n");
sb.append(" to: ").append(toIndentedString(to)).append("\n");
sb.append(" from: ").append(toIndentedString(from)).append("\n");
sb.append(" enqueuedTime: ").append(toIndentedString(enqueuedTime)).append("\n");
sb.append(" callUrl: ").append(toIndentedString(callUrl)).append("\n");
sb.append(" callTimeout: ").append(toIndentedString(callTimeout)).append("\n");
sb.append(" callbackTimeout: ").append(toIndentedString(callbackTimeout)).append("\n");
sb.append(" tag: ").append(toIndentedString(tag)).append("\n");
sb.append(" answerMethod: ").append(toIndentedString(answerMethod)).append("\n");
sb.append(" answerUrl: ").append(toIndentedString(answerUrl)).append("\n");
sb.append(" answerFallbackMethod: ").append(toIndentedString(answerFallbackMethod)).append("\n");
sb.append(" answerFallbackUrl: ").append(toIndentedString(answerFallbackUrl)).append("\n");
sb.append(" disconnectMethod: ").append(toIndentedString(disconnectMethod)).append("\n");
sb.append(" disconnectUrl: ").append(toIndentedString(disconnectUrl)).append("\n");
sb.append(" username: ").append(toIndentedString(username)).append("\n");
sb.append(" password: ").append(toIndentedString(password)).append("\n");
sb.append(" fallbackUsername: ").append(toIndentedString(fallbackUsername)).append("\n");
sb.append(" fallbackPassword: ").append(toIndentedString(fallbackPassword)).append("\n");
sb.append(" priority: ").append(toIndentedString(priority)).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 openapiFields;
public static HashSet openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet();
openapiFields.add("applicationId");
openapiFields.add("accountId");
openapiFields.add("callId");
openapiFields.add("to");
openapiFields.add("from");
openapiFields.add("enqueuedTime");
openapiFields.add("callUrl");
openapiFields.add("callTimeout");
openapiFields.add("callbackTimeout");
openapiFields.add("tag");
openapiFields.add("answerMethod");
openapiFields.add("answerUrl");
openapiFields.add("answerFallbackMethod");
openapiFields.add("answerFallbackUrl");
openapiFields.add("disconnectMethod");
openapiFields.add("disconnectUrl");
openapiFields.add("username");
openapiFields.add("password");
openapiFields.add("fallbackUsername");
openapiFields.add("fallbackPassword");
openapiFields.add("priority");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
openapiRequiredFields.add("applicationId");
openapiRequiredFields.add("accountId");
openapiRequiredFields.add("callId");
openapiRequiredFields.add("to");
openapiRequiredFields.add("from");
openapiRequiredFields.add("callUrl");
openapiRequiredFields.add("answerMethod");
openapiRequiredFields.add("answerUrl");
openapiRequiredFields.add("disconnectMethod");
}
/**
* 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 CreateCallResponse
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!CreateCallResponse.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in CreateCallResponse is not found in the empty JSON string", CreateCallResponse.openapiRequiredFields.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : CreateCallResponse.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("applicationId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `applicationId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("applicationId").toString()));
}
if (!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("callId").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `callId` to be a primitive type in the JSON string but got `%s`", jsonObj.get("callId").toString()));
}
if (!jsonObj.get("to").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `to` to be a primitive type in the JSON string but got `%s`", jsonObj.get("to").toString()));
}
if (!jsonObj.get("from").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `from` to be a primitive type in the JSON string but got `%s`", jsonObj.get("from").toString()));
}
if (!jsonObj.get("callUrl").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `callUrl` to be a primitive type in the JSON string but got `%s`", jsonObj.get("callUrl").toString()));
}
if ((jsonObj.get("tag") != null && !jsonObj.get("tag").isJsonNull()) && !jsonObj.get("tag").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `tag` to be a primitive type in the JSON string but got `%s`", jsonObj.get("tag").toString()));
}
// validate the required field `answerMethod`
CallbackMethodEnum.validateJsonElement(jsonObj.get("answerMethod"));
if (!jsonObj.get("answerUrl").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `answerUrl` to be a primitive type in the JSON string but got `%s`", jsonObj.get("answerUrl").toString()));
}
// validate the optional field `answerFallbackMethod`
if (jsonObj.get("answerFallbackMethod") != null && !jsonObj.get("answerFallbackMethod").isJsonNull()) {
CallbackMethodEnum.validateJsonElement(jsonObj.get("answerFallbackMethod"));
}
if ((jsonObj.get("answerFallbackUrl") != null && !jsonObj.get("answerFallbackUrl").isJsonNull()) && !jsonObj.get("answerFallbackUrl").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `answerFallbackUrl` to be a primitive type in the JSON string but got `%s`", jsonObj.get("answerFallbackUrl").toString()));
}
// validate the required field `disconnectMethod`
CallbackMethodEnum.validateJsonElement(jsonObj.get("disconnectMethod"));
if ((jsonObj.get("disconnectUrl") != null && !jsonObj.get("disconnectUrl").isJsonNull()) && !jsonObj.get("disconnectUrl").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `disconnectUrl` to be a primitive type in the JSON string but got `%s`", jsonObj.get("disconnectUrl").toString()));
}
if ((jsonObj.get("username") != null && !jsonObj.get("username").isJsonNull()) && !jsonObj.get("username").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `username` to be a primitive type in the JSON string but got `%s`", jsonObj.get("username").toString()));
}
if ((jsonObj.get("password") != null && !jsonObj.get("password").isJsonNull()) && !jsonObj.get("password").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `password` to be a primitive type in the JSON string but got `%s`", jsonObj.get("password").toString()));
}
if ((jsonObj.get("fallbackUsername") != null && !jsonObj.get("fallbackUsername").isJsonNull()) && !jsonObj.get("fallbackUsername").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `fallbackUsername` to be a primitive type in the JSON string but got `%s`", jsonObj.get("fallbackUsername").toString()));
}
if ((jsonObj.get("fallbackPassword") != null && !jsonObj.get("fallbackPassword").isJsonNull()) && !jsonObj.get("fallbackPassword").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `fallbackPassword` to be a primitive type in the JSON string but got `%s`", jsonObj.get("fallbackPassword").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!CreateCallResponse.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'CreateCallResponse' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(CreateCallResponse.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, CreateCallResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
// serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry 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 CreateCallResponse read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
JsonObject jsonObj = jsonElement.getAsJsonObject();
// store additional fields in the deserialized instance
CreateCallResponse instance = thisAdapter.fromJsonTree(jsonObj);
for (Map.Entry 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 CreateCallResponse given an JSON string
*
* @param jsonString JSON string
* @return An instance of CreateCallResponse
* @throws IOException if the JSON string is invalid with respect to CreateCallResponse
*/
public static CreateCallResponse fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, CreateCallResponse.class);
}
/**
* Convert an instance of CreateCallResponse to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}