io.swagger.client.model.AccountList Maven / Gradle / Ivy
/*
* finAPI RESTful Services
* finAPI RESTful Services
*
* OpenAPI spec version: v1.64.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 io.swagger.client.model;
import java.util.Objects;
import java.util.Arrays;
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 io.swagger.client.model.Account;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Container for data of multiple bank accounts
*/
@ApiModel(description = "Container for data of multiple bank accounts")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-02-05T12:19:21.458Z")
public class AccountList {
@SerializedName("accounts")
private List accounts = null;
public AccountList accounts(List accounts) {
this.accounts = accounts;
return this;
}
public AccountList addAccountsItem(Account accountsItem) {
if (this.accounts == null) {
this.accounts = new ArrayList();
}
this.accounts.add(accountsItem);
return this;
}
/**
* List of bank accounts
* @return accounts
**/
@ApiModelProperty(value = "List of bank accounts")
public List getAccounts() {
return accounts;
}
public void setAccounts(List accounts) {
this.accounts = accounts;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AccountList accountList = (AccountList) o;
return Objects.equals(this.accounts, accountList.accounts);
}
@Override
public int hashCode() {
return Objects.hash(accounts);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountList {\n");
sb.append(" accounts: ").append(toIndentedString(accounts)).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 ");
}
}