com.genesys.internal.workspace.model.VoicecallsidinitiateconferenceData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workspace Show documentation
Show all versions of workspace Show documentation
A Java library to interface to Genesys Workspace public API
/*
* Workspace API
* Agent API
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.genesys.internal.workspace.model;
import java.util.Objects;
import com.genesys.internal.workspace.model.Kvpair;
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* VoicecallsidinitiateconferenceData
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-10-31T23:59:48.503Z")
public class VoicecallsidinitiateconferenceData {
@SerializedName("destination")
private String destination = null;
@SerializedName("location")
private String location = null;
@SerializedName("userData")
private List userData = null;
@SerializedName("reasons")
private List reasons = null;
@SerializedName("extensions")
private List extensions = null;
@SerializedName("outboundCallerId")
private String outboundCallerId = null;
public VoicecallsidinitiateconferenceData destination(String destination) {
this.destination = destination;
return this;
}
/**
* The number to be dialed
* @return destination
**/
@ApiModelProperty(required = true, value = "The number to be dialed")
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public VoicecallsidinitiateconferenceData location(String location) {
this.location = location;
return this;
}
/**
* Name of the remote location in the form of <SwitchName> or <T-ServerApplicationName>@<SwitchName>. When there is no need to specify a T-Server for location, this parameter must have the value NULL, not an empty string.
* @return location
**/
@ApiModelProperty(value = "Name of the remote location in the form of or @. When there is no need to specify a T-Server for location, this parameter must have the value NULL, not an empty string.")
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public VoicecallsidinitiateconferenceData userData(List userData) {
this.userData = userData;
return this;
}
public VoicecallsidinitiateconferenceData addUserDataItem(Kvpair userDataItem) {
if (this.userData == null) {
this.userData = new ArrayList();
}
this.userData.add(userDataItem);
return this;
}
/**
* A key/value pairs list of the user data that should be attached to the call.
* @return userData
**/
@ApiModelProperty(value = "A key/value pairs list of the user data that should be attached to the call.")
public List getUserData() {
return userData;
}
public void setUserData(List userData) {
this.userData = userData;
}
public VoicecallsidinitiateconferenceData reasons(List reasons) {
this.reasons = reasons;
return this;
}
public VoicecallsidinitiateconferenceData addReasonsItem(Kvpair reasonsItem) {
if (this.reasons == null) {
this.reasons = new ArrayList();
}
this.reasons.add(reasonsItem);
return this;
}
/**
* A key/value pairs list of a data structure that provides additional information associated with this action.
* @return reasons
**/
@ApiModelProperty(value = "A key/value pairs list of a data structure that provides additional information associated with this action.")
public List getReasons() {
return reasons;
}
public void setReasons(List reasons) {
this.reasons = reasons;
}
public VoicecallsidinitiateconferenceData extensions(List extensions) {
this.extensions = extensions;
return this;
}
public VoicecallsidinitiateconferenceData addExtensionsItem(Kvpair extensionsItem) {
if (this.extensions == null) {
this.extensions = new ArrayList();
}
this.extensions.add(extensionsItem);
return this;
}
/**
* A key/value pairs list of additional data.
* @return extensions
**/
@ApiModelProperty(value = "A key/value pairs list of additional data.")
public List getExtensions() {
return extensions;
}
public void setExtensions(List extensions) {
this.extensions = extensions;
}
public VoicecallsidinitiateconferenceData outboundCallerId(String outboundCallerId) {
this.outboundCallerId = outboundCallerId;
return this;
}
/**
* value to be set as CPN_DIGITS.
* @return outboundCallerId
**/
@ApiModelProperty(value = "value to be set as CPN_DIGITS.")
public String getOutboundCallerId() {
return outboundCallerId;
}
public void setOutboundCallerId(String outboundCallerId) {
this.outboundCallerId = outboundCallerId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
VoicecallsidinitiateconferenceData voicecallsidinitiateconferenceData = (VoicecallsidinitiateconferenceData) o;
return Objects.equals(this.destination, voicecallsidinitiateconferenceData.destination) &&
Objects.equals(this.location, voicecallsidinitiateconferenceData.location) &&
Objects.equals(this.userData, voicecallsidinitiateconferenceData.userData) &&
Objects.equals(this.reasons, voicecallsidinitiateconferenceData.reasons) &&
Objects.equals(this.extensions, voicecallsidinitiateconferenceData.extensions) &&
Objects.equals(this.outboundCallerId, voicecallsidinitiateconferenceData.outboundCallerId);
}
@Override
public int hashCode() {
return Objects.hash(destination, location, userData, reasons, extensions, outboundCallerId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VoicecallsidinitiateconferenceData {\n");
sb.append(" destination: ").append(toIndentedString(destination)).append("\n");
sb.append(" location: ").append(toIndentedString(location)).append("\n");
sb.append(" userData: ").append(toIndentedString(userData)).append("\n");
sb.append(" reasons: ").append(toIndentedString(reasons)).append("\n");
sb.append(" extensions: ").append(toIndentedString(extensions)).append("\n");
sb.append(" outboundCallerId: ").append(toIndentedString(outboundCallerId)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy