jp.co.freee.accounting.models.TrialBsResponseTrialBsSections 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;
/**
* TrialBsResponseTrialBsSections
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TrialBsResponseTrialBsSections {
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 TrialBsResponseTrialBsSections() {
}
public TrialBsResponseTrialBsSections 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 TrialBsResponseTrialBsSections 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 TrialBsResponseTrialBsSections 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 TrialBsResponseTrialBsSections 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 TrialBsResponseTrialBsSections id(Integer id) {
this.id = id;
return this;
}
/**
* 部門ID
* minimum: 0
* maximum: 2147483647
* @return id
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "1", required = true, value = "部門ID")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public TrialBsResponseTrialBsSections name(String name) {
this.name = name;
return this;
}
/**
* 部門名
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "開発部門", value = "部門名")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public TrialBsResponseTrialBsSections 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;
}
TrialBsResponseTrialBsSections trialBsResponseTrialBsSections = (TrialBsResponseTrialBsSections) o;
return Objects.equals(this.closingBalance, trialBsResponseTrialBsSections.closingBalance) &&
Objects.equals(this.compositionRatio, trialBsResponseTrialBsSections.compositionRatio) &&
Objects.equals(this.creditAmount, trialBsResponseTrialBsSections.creditAmount) &&
Objects.equals(this.debitAmount, trialBsResponseTrialBsSections.debitAmount) &&
Objects.equals(this.id, trialBsResponseTrialBsSections.id) &&
Objects.equals(this.name, trialBsResponseTrialBsSections.name) &&
Objects.equals(this.openingBalance, trialBsResponseTrialBsSections.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 TrialBsResponseTrialBsSections {\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 ");
}
}