All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genesys._internal.workspace.model.ConfigResponseData Maven / Gradle / Ivy

There is a newer version: 9.0.73
Show newest version
/*
 * Workspace API
 * Application API used by Workspace Web Edition
 *
 * 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.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModelProperty;

import java.util.ArrayList;
import java.util.List;

/**
 * ConfigResponseData
 */
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-08-22T16:18:36.606Z")
public class ConfigResponseData {
  @SerializedName("transactions")
  private List transactions = null;

  @SerializedName("businessAttributes")
  private List businessAttributes = null;

  @SerializedName("actionCodes")
  private List actionCodes = null;

  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;
  }

  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;
  }


  @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.transactions, configResponseData.transactions) &&
        Objects.equals(this.businessAttributes, configResponseData.businessAttributes) &&
        Objects.equals(this.actionCodes, configResponseData.actionCodes);
  }

  @Override
  public int hashCode() {
    return Objects.hash(transactions, businessAttributes, actionCodes);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ConfigResponseData {\n");
    
    sb.append("    transactions: ").append(toIndentedString(transactions)).append("\n");
    sb.append("    businessAttributes: ").append(toIndentedString(businessAttributes)).append("\n");
    sb.append("    actionCodes: ").append(toIndentedString(actionCodes)).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