jp.co.freee.accounting.models.TrialBsResponseTrialBsPartners Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freee-accounting-sdk Show documentation
Show all versions of freee-accounting-sdk Show documentation
freee accounting client SDK for Java
/*
* freee API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package jp.co.freee.accounting.models;
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 java.io.IOException;
import java.math.BigDecimal;
/**
* TrialBsResponseTrialBsPartners
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TrialBsResponseTrialBsPartners {
public static final String SERIALIZED_NAME_CLOSING_BALANCE = "closing_balance";
@SerializedName(SERIALIZED_NAME_CLOSING_BALANCE)
private Integer closingBalance;
public static final String SERIALIZED_NAME_COMPOSITION_RATIO = "composition_ratio";
@SerializedName(SERIALIZED_NAME_COMPOSITION_RATIO)
private BigDecimal compositionRatio;
public static final String SERIALIZED_NAME_CREDIT_AMOUNT = "credit_amount";
@SerializedName(SERIALIZED_NAME_CREDIT_AMOUNT)
private Integer creditAmount;
public static final String SERIALIZED_NAME_DEBIT_AMOUNT = "debit_amount";
@SerializedName(SERIALIZED_NAME_DEBIT_AMOUNT)
private Integer debitAmount;
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private Integer id;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_OPENING_BALANCE = "opening_balance";
@SerializedName(SERIALIZED_NAME_OPENING_BALANCE)
private Integer openingBalance;
public TrialBsResponseTrialBsPartners() {
}
public TrialBsResponseTrialBsPartners closingBalance(Integer closingBalance) {
this.closingBalance = closingBalance;
return this;
}
/**
* 期末残高
* @return closingBalance
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "-25920", value = "期末残高")
public Integer getClosingBalance() {
return closingBalance;
}
public void setClosingBalance(Integer closingBalance) {
this.closingBalance = closingBalance;
}
public TrialBsResponseTrialBsPartners compositionRatio(BigDecimal compositionRatio) {
this.compositionRatio = compositionRatio;
return this;
}
/**
* 構成比
* @return compositionRatio
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "0.85", value = "構成比")
public BigDecimal getCompositionRatio() {
return compositionRatio;
}
public void setCompositionRatio(BigDecimal compositionRatio) {
this.compositionRatio = compositionRatio;
}
public TrialBsResponseTrialBsPartners creditAmount(Integer creditAmount) {
this.creditAmount = creditAmount;
return this;
}
/**
* 貸方金額
* @return creditAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2592", value = "貸方金額")
public Integer getCreditAmount() {
return creditAmount;
}
public void setCreditAmount(Integer creditAmount) {
this.creditAmount = creditAmount;
}
public TrialBsResponseTrialBsPartners debitAmount(Integer debitAmount) {
this.debitAmount = debitAmount;
return this;
}
/**
* 借方金額
* @return debitAmount
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "0", value = "借方金額")
public Integer getDebitAmount() {
return debitAmount;
}
public void setDebitAmount(Integer debitAmount) {
this.debitAmount = debitAmount;
}
public TrialBsResponseTrialBsPartners id(Integer id) {
this.id = id;
return this;
}
/**
* 取引先ID
* minimum: 1
* maximum: 2147483647
* @return id
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "22", required = true, value = "取引先ID")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public TrialBsResponseTrialBsPartners name(String name) {
this.name = name;
return this;
}
/**
* 取引先名
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "freee", value = "取引先名")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public TrialBsResponseTrialBsPartners openingBalance(Integer openingBalance) {
this.openingBalance = openingBalance;
return this;
}
/**
* 期首残高
* @return openingBalance
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "0", value = "期首残高")
public Integer getOpeningBalance() {
return openingBalance;
}
public void setOpeningBalance(Integer openingBalance) {
this.openingBalance = openingBalance;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TrialBsResponseTrialBsPartners trialBsResponseTrialBsPartners = (TrialBsResponseTrialBsPartners) o;
return Objects.equals(this.closingBalance, trialBsResponseTrialBsPartners.closingBalance) &&
Objects.equals(this.compositionRatio, trialBsResponseTrialBsPartners.compositionRatio) &&
Objects.equals(this.creditAmount, trialBsResponseTrialBsPartners.creditAmount) &&
Objects.equals(this.debitAmount, trialBsResponseTrialBsPartners.debitAmount) &&
Objects.equals(this.id, trialBsResponseTrialBsPartners.id) &&
Objects.equals(this.name, trialBsResponseTrialBsPartners.name) &&
Objects.equals(this.openingBalance, trialBsResponseTrialBsPartners.openingBalance);
}
@Override
public int hashCode() {
return Objects.hash(closingBalance, compositionRatio, creditAmount, debitAmount, id, name, openingBalance);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TrialBsResponseTrialBsPartners {\n");
sb.append(" closingBalance: ").append(toIndentedString(closingBalance)).append("\n");
sb.append(" compositionRatio: ").append(toIndentedString(compositionRatio)).append("\n");
sb.append(" creditAmount: ").append(toIndentedString(creditAmount)).append("\n");
sb.append(" debitAmount: ").append(toIndentedString(debitAmount)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" openingBalance: ").append(toIndentedString(openingBalance)).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 ");
}
}