com.genesys.internal.workspace.model.ConfigResponseData 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.ConfigResponseDataActionCodes;
import com.genesys.internal.workspace.model.ConfigResponseDataBusinessAttributes;
import com.genesys.internal.workspace.model.ConfigResponseDataTransactions;
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;
/**
* ConfigResponseData
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-20T23:04:44.000Z")
public class ConfigResponseData {
@SerializedName("actionCodes")
private List actionCodes = null;
@SerializedName("transactions")
private List transactions = null;
@SerializedName("businessAttributes")
private List businessAttributes = null;
public ConfigResponseData actionCodes(List actionCodes) {
this.actionCodes = actionCodes;
return this;
}
public ConfigResponseData addActionCodesItem(ConfigResponseDataActionCodes actionCodesItem) {
if (this.actionCodes == null) {
this.actionCodes = new ArrayList();
}
this.actionCodes.add(actionCodesItem);
return this;
}
/**
* Get actionCodes
* @return actionCodes
**/
@ApiModelProperty(value = "")
public List getActionCodes() {
return actionCodes;
}
public void setActionCodes(List actionCodes) {
this.actionCodes = actionCodes;
}
public ConfigResponseData transactions(List transactions) {
this.transactions = transactions;
return this;
}
public ConfigResponseData addTransactionsItem(ConfigResponseDataTransactions transactionsItem) {
if (this.transactions == null) {
this.transactions = new ArrayList();
}
this.transactions.add(transactionsItem);
return this;
}
/**
* Get transactions
* @return transactions
**/
@ApiModelProperty(value = "")
public List getTransactions() {
return transactions;
}
public void setTransactions(List transactions) {
this.transactions = transactions;
}
public ConfigResponseData businessAttributes(List businessAttributes) {
this.businessAttributes = businessAttributes;
return this;
}
public ConfigResponseData addBusinessAttributesItem(ConfigResponseDataBusinessAttributes businessAttributesItem) {
if (this.businessAttributes == null) {
this.businessAttributes = new ArrayList();
}
this.businessAttributes.add(businessAttributesItem);
return this;
}
/**
* Get businessAttributes
* @return businessAttributes
**/
@ApiModelProperty(value = "")
public List getBusinessAttributes() {
return businessAttributes;
}
public void setBusinessAttributes(List businessAttributes) {
this.businessAttributes = businessAttributes;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConfigResponseData configResponseData = (ConfigResponseData) o;
return Objects.equals(this.actionCodes, configResponseData.actionCodes) &&
Objects.equals(this.transactions, configResponseData.transactions) &&
Objects.equals(this.businessAttributes, configResponseData.businessAttributes);
}
@Override
public int hashCode() {
return Objects.hash(actionCodes, transactions, businessAttributes);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConfigResponseData {\n");
sb.append(" actionCodes: ").append(toIndentedString(actionCodes)).append("\n");
sb.append(" transactions: ").append(toIndentedString(transactions)).append("\n");
sb.append(" businessAttributes: ").append(toIndentedString(businessAttributes)).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