com.bandwidth.sdk.model.UpdateConference 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.ConferenceStateEnum;
import com.bandwidth.sdk.model.RedirectMethodEnum;
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.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;
/**
* UpdateConference
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
public class UpdateConference {
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private ConferenceStateEnum status = ConferenceStateEnum.ACTIVE;
public static final String SERIALIZED_NAME_REDIRECT_URL = "redirectUrl";
@SerializedName(SERIALIZED_NAME_REDIRECT_URL)
private URI redirectUrl;
public static final String SERIALIZED_NAME_REDIRECT_METHOD = "redirectMethod";
@SerializedName(SERIALIZED_NAME_REDIRECT_METHOD)
private RedirectMethodEnum redirectMethod = RedirectMethodEnum.POST;
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_REDIRECT_FALLBACK_URL = "redirectFallbackUrl";
@SerializedName(SERIALIZED_NAME_REDIRECT_FALLBACK_URL)
private URI redirectFallbackUrl;
public static final String SERIALIZED_NAME_REDIRECT_FALLBACK_METHOD = "redirectFallbackMethod";
@SerializedName(SERIALIZED_NAME_REDIRECT_FALLBACK_METHOD)
private RedirectMethodEnum redirectFallbackMethod = RedirectMethodEnum.POST;
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 UpdateConference() {
}
public UpdateConference status(ConferenceStateEnum status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nullable
public ConferenceStateEnum getStatus() {
return status;
}
public void setStatus(ConferenceStateEnum status) {
this.status = status;
}
public UpdateConference redirectUrl(URI redirectUrl) {
this.redirectUrl = redirectUrl;
return this;
}
/**
* The URL to send the [conferenceRedirect](/docs/voice/webhooks/conferenceRedirect) event which will provide new BXML. Not allowed if `state` is `completed`, but required if `state` is `active`.
* @return redirectUrl
**/
@javax.annotation.Nullable
public URI getRedirectUrl() {
return redirectUrl;
}
public void setRedirectUrl(URI redirectUrl) {
this.redirectUrl = redirectUrl;
}
public UpdateConference redirectMethod(RedirectMethodEnum redirectMethod) {
this.redirectMethod = redirectMethod;
return this;
}
/**
* Get redirectMethod
* @return redirectMethod
**/
@javax.annotation.Nullable
public RedirectMethodEnum getRedirectMethod() {
return redirectMethod;
}
public void setRedirectMethod(RedirectMethodEnum redirectMethod) {
this.redirectMethod = redirectMethod;
}
public UpdateConference 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 UpdateConference 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 UpdateConference redirectFallbackUrl(URI redirectFallbackUrl) {
this.redirectFallbackUrl = redirectFallbackUrl;
return this;
}
/**
* A fallback url which, if provided, will be used to retry the `conferenceRedirect` webhook delivery in case `redirectUrl` fails to respond. Not allowed if `state` is `completed`.
* @return redirectFallbackUrl
**/
@javax.annotation.Nullable
public URI getRedirectFallbackUrl() {
return redirectFallbackUrl;
}
public void setRedirectFallbackUrl(URI redirectFallbackUrl) {
this.redirectFallbackUrl = redirectFallbackUrl;
}
public UpdateConference redirectFallbackMethod(RedirectMethodEnum redirectFallbackMethod) {
this.redirectFallbackMethod = redirectFallbackMethod;
return this;
}
/**
* Get redirectFallbackMethod
* @return redirectFallbackMethod
**/
@javax.annotation.Nullable
public RedirectMethodEnum getRedirectFallbackMethod() {
return redirectFallbackMethod;
}
public void setRedirectFallbackMethod(RedirectMethodEnum redirectFallbackMethod) {
this.redirectFallbackMethod = redirectFallbackMethod;
}
public UpdateConference 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 UpdateConference 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;
}
/**
* 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 UpdateConference instance itself
*/
public UpdateConference 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;
}
UpdateConference updateConference = (UpdateConference) o;
return Objects.equals(this.status, updateConference.status) &&
Objects.equals(this.redirectUrl, updateConference.redirectUrl) &&
Objects.equals(this.redirectMethod, updateConference.redirectMethod) &&
Objects.equals(this.username, updateConference.username) &&
Objects.equals(this.password, updateConference.password) &&
Objects.equals(this.redirectFallbackUrl, updateConference.redirectFallbackUrl) &&
Objects.equals(this.redirectFallbackMethod, updateConference.redirectFallbackMethod) &&
Objects.equals(this.fallbackUsername, updateConference.fallbackUsername) &&
Objects.equals(this.fallbackPassword, updateConference.fallbackPassword)&&
Objects.equals(this.additionalProperties, updateConference.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(status, redirectUrl, redirectMethod, username, password, redirectFallbackUrl, redirectFallbackMethod, fallbackUsername, fallbackPassword, 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 UpdateConference {\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" redirectUrl: ").append(toIndentedString(redirectUrl)).append("\n");
sb.append(" redirectMethod: ").append(toIndentedString(redirectMethod)).append("\n");
sb.append(" username: ").append(toIndentedString(username)).append("\n");
sb.append(" password: ").append(toIndentedString(password)).append("\n");
sb.append(" redirectFallbackUrl: ").append(toIndentedString(redirectFallbackUrl)).append("\n");
sb.append(" redirectFallbackMethod: ").append(toIndentedString(redirectFallbackMethod)).append("\n");
sb.append(" fallbackUsername: ").append(toIndentedString(fallbackUsername)).append("\n");
sb.append(" fallbackPassword: ").append(toIndentedString(fallbackPassword)).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("status");
openapiFields.add("redirectUrl");
openapiFields.add("redirectMethod");
openapiFields.add("username");
openapiFields.add("password");
openapiFields.add("redirectFallbackUrl");
openapiFields.add("redirectFallbackMethod");
openapiFields.add("fallbackUsername");
openapiFields.add("fallbackPassword");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* 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 UpdateConference
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!UpdateConference.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in UpdateConference is not found in the empty JSON string", UpdateConference.openapiRequiredFields.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
// validate the optional field `status`
if (jsonObj.get("status") != null && !jsonObj.get("status").isJsonNull()) {
ConferenceStateEnum.validateJsonElement(jsonObj.get("status"));
}
if ((jsonObj.get("redirectUrl") != null && !jsonObj.get("redirectUrl").isJsonNull()) && !jsonObj.get("redirectUrl").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `redirectUrl` to be a primitive type in the JSON string but got `%s`", jsonObj.get("redirectUrl").toString()));
}
// validate the optional field `redirectMethod`
if (jsonObj.get("redirectMethod") != null && !jsonObj.get("redirectMethod").isJsonNull()) {
RedirectMethodEnum.validateJsonElement(jsonObj.get("redirectMethod"));
}
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("redirectFallbackUrl") != null && !jsonObj.get("redirectFallbackUrl").isJsonNull()) && !jsonObj.get("redirectFallbackUrl").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `redirectFallbackUrl` to be a primitive type in the JSON string but got `%s`", jsonObj.get("redirectFallbackUrl").toString()));
}
// validate the optional field `redirectFallbackMethod`
if (jsonObj.get("redirectFallbackMethod") != null && !jsonObj.get("redirectFallbackMethod").isJsonNull()) {
RedirectMethodEnum.validateJsonElement(jsonObj.get("redirectFallbackMethod"));
}
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 (!UpdateConference.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'UpdateConference' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(UpdateConference.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, UpdateConference 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 UpdateConference read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
JsonObject jsonObj = jsonElement.getAsJsonObject();
// store additional fields in the deserialized instance
UpdateConference 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 UpdateConference given an JSON string
*
* @param jsonString JSON string
* @return An instance of UpdateConference
* @throws IOException if the JSON string is invalid with respect to UpdateConference
*/
public static UpdateConference fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, UpdateConference.class);
}
/**
* Convert an instance of UpdateConference to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}