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

jp.co.freee.accounting.models.TrialPlResponseTrialPlSections Maven / Gradle / Ivy

There is a newer version: 2.29.0
Show newest version
/*
 * 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;

/**
 * TrialPlResponseTrialPlSections
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TrialPlResponseTrialPlSections {
  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 TrialPlResponseTrialPlSections() { 
  }

  public TrialPlResponseTrialPlSections 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 TrialPlResponseTrialPlSections 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 TrialPlResponseTrialPlSections 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 TrialPlResponseTrialPlSections 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 TrialPlResponseTrialPlSections id(Integer id) {
    
    this.id = id;
    return this;
  }

   /**
   * 部門ID
   * minimum: 1
   * 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 TrialPlResponseTrialPlSections 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 TrialPlResponseTrialPlSections 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;
    }
    TrialPlResponseTrialPlSections trialPlResponseTrialPlSections = (TrialPlResponseTrialPlSections) o;
    return Objects.equals(this.closingBalance, trialPlResponseTrialPlSections.closingBalance) &&
        Objects.equals(this.compositionRatio, trialPlResponseTrialPlSections.compositionRatio) &&
        Objects.equals(this.creditAmount, trialPlResponseTrialPlSections.creditAmount) &&
        Objects.equals(this.debitAmount, trialPlResponseTrialPlSections.debitAmount) &&
        Objects.equals(this.id, trialPlResponseTrialPlSections.id) &&
        Objects.equals(this.name, trialPlResponseTrialPlSections.name) &&
        Objects.equals(this.openingBalance, trialPlResponseTrialPlSections.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 TrialPlResponseTrialPlSections {\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    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy