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

jp.co.freee.accounting.models.Section 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 org.openapitools.jackson.nullable.JsonNullable;

/**
 * Section
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Section {
  public static final String SERIALIZED_NAME_AVAILABLE = "available";
  @SerializedName(SERIALIZED_NAME_AVAILABLE)
  private Boolean available;

  public static final String SERIALIZED_NAME_COMPANY_ID = "company_id";
  @SerializedName(SERIALIZED_NAME_COMPANY_ID)
  private Integer companyId;

  public static final String SERIALIZED_NAME_ID = "id";
  @SerializedName(SERIALIZED_NAME_ID)
  private Integer id;

  public static final String SERIALIZED_NAME_INDENT_COUNT = "indent_count";
  @SerializedName(SERIALIZED_NAME_INDENT_COUNT)
  private Integer indentCount;

  public static final String SERIALIZED_NAME_LONG_NAME = "long_name";
  @SerializedName(SERIALIZED_NAME_LONG_NAME)
  private String longName;

  public static final String SERIALIZED_NAME_NAME = "name";
  @SerializedName(SERIALIZED_NAME_NAME)
  private String name;

  public static final String SERIALIZED_NAME_PARENT_ID = "parent_id";
  @SerializedName(SERIALIZED_NAME_PARENT_ID)
  private Integer parentId;

  public static final String SERIALIZED_NAME_SHORTCUT1 = "shortcut1";
  @SerializedName(SERIALIZED_NAME_SHORTCUT1)
  private String shortcut1;

  public static final String SERIALIZED_NAME_SHORTCUT2 = "shortcut2";
  @SerializedName(SERIALIZED_NAME_SHORTCUT2)
  private String shortcut2;

  public Section() { 
  }

  public Section available(Boolean available) {
    
    this.available = available;
    return this;
  }

   /**
   * 部門の使用設定(true: 使用する、false: 使用しない) <br> <ul>   <li>     本APIでsectionを作成した場合はtrueになります。   </li>   <li>     falseにする場合はWeb画面から変更できます。   </li>   <li>     trueの場合、Web画面での取引登録時などに入力候補として表示されます。   </li>   <li>     falseの場合、部門自体は削除せず、Web画面での取引登録時などに入力候補として表示されません。ただし取引(収入/支出)の作成APIなどでfalseの部門をパラメータに指定すれば、取引などにfalseの部門を設定できます。   </li> </ul>
   * @return available
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(example = "true", required = true, value = "部門の使用設定(true: 使用する、false: 使用しない) 
  • 本APIでsectionを作成した場合はtrueになります。
  • falseにする場合はWeb画面から変更できます。
  • trueの場合、Web画面での取引登録時などに入力候補として表示されます。
  • falseの場合、部門自体は削除せず、Web画面での取引登録時などに入力候補として表示されません。ただし取引(収入/支出)の作成APIなどでfalseの部門をパラメータに指定すれば、取引などにfalseの部門を設定できます。
") public Boolean getAvailable() { return available; } public void setAvailable(Boolean available) { this.available = available; } public Section companyId(Integer companyId) { this.companyId = companyId; return this; } /** * 事業所ID * minimum: 1 * maximum: 2147483647 * @return companyId **/ @javax.annotation.Nonnull @ApiModelProperty(example = "1", required = true, value = "事業所ID") public Integer getCompanyId() { return companyId; } public void setCompanyId(Integer companyId) { this.companyId = companyId; } public Section 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 Section indentCount(Integer indentCount) { this.indentCount = indentCount; return this; } /** * <a target=\"_blank\" href=\"https://support.freee.co.jp/hc/ja/articles/209093566\">部門階層</a> <br> ※ indent_count が 0 のときは第一階層の親部門です。 * minimum: 0 * @return indentCount **/ @javax.annotation.Nullable @ApiModelProperty(example = "0", value = "部門階層
※ indent_count が 0 のときは第一階層の親部門です。 ") public Integer getIndentCount() { return indentCount; } public void setIndentCount(Integer indentCount) { this.indentCount = indentCount; } public Section longName(String longName) { this.longName = longName; return this; } /** * 正式名称(255文字以内) * @return longName **/ @javax.annotation.Nullable @ApiModelProperty(example = "開発部門", value = "正式名称(255文字以内)") public String getLongName() { return longName; } public void setLongName(String longName) { this.longName = longName; } public Section name(String name) { this.name = name; return this; } /** * 部門名 (30文字以内) * @return name **/ @javax.annotation.Nonnull @ApiModelProperty(example = "開発部門", required = true, value = "部門名 (30文字以内)") public String getName() { return name; } public void setName(String name) { this.name = name; } public Section parentId(Integer parentId) { this.parentId = parentId; return this; } /** * <a target=\"_blank\" href=\"https://support.freee.co.jp/hc/ja/articles/209093566\">親部門ID</a> <br> ※ parent_id が null のときは第一階層の親部門です。 * @return parentId **/ @javax.annotation.Nullable @ApiModelProperty(example = "1", value = "親部門ID
※ parent_id が null のときは第一階層の親部門です。 ") public Integer getParentId() { return parentId; } public void setParentId(Integer parentId) { this.parentId = parentId; } public Section shortcut1(String shortcut1) { this.shortcut1 = shortcut1; return this; } /** * ショートカット1 (20文字以内) * @return shortcut1 **/ @javax.annotation.Nullable @ApiModelProperty(example = "DEVELOPER", value = "ショートカット1 (20文字以内)") public String getShortcut1() { return shortcut1; } public void setShortcut1(String shortcut1) { this.shortcut1 = shortcut1; } public Section shortcut2(String shortcut2) { this.shortcut2 = shortcut2; return this; } /** * ショートカット2 (20文字以内) * @return shortcut2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "123", value = "ショートカット2 (20文字以内)") public String getShortcut2() { return shortcut2; } public void setShortcut2(String shortcut2) { this.shortcut2 = shortcut2; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Section section = (Section) o; return Objects.equals(this.available, section.available) && Objects.equals(this.companyId, section.companyId) && Objects.equals(this.id, section.id) && Objects.equals(this.indentCount, section.indentCount) && Objects.equals(this.longName, section.longName) && Objects.equals(this.name, section.name) && Objects.equals(this.parentId, section.parentId) && Objects.equals(this.shortcut1, section.shortcut1) && Objects.equals(this.shortcut2, section.shortcut2); } private static boolean equalsNullable(JsonNullable a, JsonNullable b) { return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get())); } @Override public int hashCode() { return Objects.hash(available, companyId, id, indentCount, longName, name, parentId, shortcut1, shortcut2); } private static int hashCodeNullable(JsonNullable a) { if (a == null) { return 1; } return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Section {\n"); sb.append(" available: ").append(toIndentedString(available)).append("\n"); sb.append(" companyId: ").append(toIndentedString(companyId)).append("\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" indentCount: ").append(toIndentedString(indentCount)).append("\n"); sb.append(" longName: ").append(toIndentedString(longName)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" parentId: ").append(toIndentedString(parentId)).append("\n"); sb.append(" shortcut1: ").append(toIndentedString(shortcut1)).append("\n"); sb.append(" shortcut2: ").append(toIndentedString(shortcut2)).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