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

jp.co.freee.accounting.models.Item 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;

/**
 * Item
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Item {
  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_NAME = "name";
  @SerializedName(SERIALIZED_NAME_NAME)
  private String name;

  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 static final String SERIALIZED_NAME_UPDATE_DATE = "update_date";
  @SerializedName(SERIALIZED_NAME_UPDATE_DATE)
  private String updateDate;

  public Item() { 
  }

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

   /**
   * 品目の使用設定(true: 使用する、false: 使用しない) <br> <ul>   <li>     本APIでitemを作成した場合はtrueになります。   </li>   <li>     falseにする場合はWeb画面から変更できます。   </li>   <li>     trueの場合、Web画面での取引登録時などに入力候補として表示されます。   </li>   <li>     falseの場合、品目自体は削除せず、Web画面での取引登録時などに入力候補として表示されません。ただし取引(収入/支出)の作成APIなどでfalseの品目をパラメータに指定すれば、取引などにfalseの品目を設定できます。   </li> </ul>
   * @return available
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "品目の使用設定(true: 使用する、false: 使用しない) 
  • 本APIでitemを作成した場合はtrueになります。
  • falseにする場合はWeb画面から変更できます。
  • trueの場合、Web画面での取引登録時などに入力候補として表示されます。
  • falseの場合、品目自体は削除せず、Web画面での取引登録時などに入力候補として表示されません。ただし取引(収入/支出)の作成APIなどでfalseの品目をパラメータに指定すれば、取引などにfalseの品目を設定できます。
") public Boolean getAvailable() { return available; } public void setAvailable(Boolean available) { this.available = available; } public Item 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 Item id(Integer id) { this.id = id; return this; } /** * 品目ID * minimum: 1 * maximum: 2147483647 * @return id **/ @javax.annotation.Nonnull @ApiModelProperty(example = "101", required = true, value = "品目ID") public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Item 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 Item shortcut1(String shortcut1) { this.shortcut1 = shortcut1; return this; } /** * ショートカット1 (20文字以内) * @return shortcut1 **/ @javax.annotation.Nullable @ApiModelProperty(example = "TAXI", value = "ショートカット1 (20文字以内)") public String getShortcut1() { return shortcut1; } public void setShortcut1(String shortcut1) { this.shortcut1 = shortcut1; } public Item shortcut2(String shortcut2) { this.shortcut2 = shortcut2; return this; } /** * ショートカット2 (20文字以内) * @return shortcut2 **/ @javax.annotation.Nullable @ApiModelProperty(example = "201", value = "ショートカット2 (20文字以内)") public String getShortcut2() { return shortcut2; } public void setShortcut2(String shortcut2) { this.shortcut2 = shortcut2; } public Item updateDate(String updateDate) { this.updateDate = updateDate; return this; } /** * 更新日(yyyy-mm-dd) * @return updateDate **/ @javax.annotation.Nonnull @ApiModelProperty(example = "2019-12-17", required = true, value = "更新日(yyyy-mm-dd)") public String getUpdateDate() { return updateDate; } public void setUpdateDate(String updateDate) { this.updateDate = updateDate; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Item item = (Item) o; return Objects.equals(this.available, item.available) && Objects.equals(this.companyId, item.companyId) && Objects.equals(this.id, item.id) && Objects.equals(this.name, item.name) && Objects.equals(this.shortcut1, item.shortcut1) && Objects.equals(this.shortcut2, item.shortcut2) && Objects.equals(this.updateDate, item.updateDate); } 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, name, shortcut1, shortcut2, updateDate); } 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 Item {\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(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" shortcut1: ").append(toIndentedString(shortcut1)).append("\n"); sb.append(" shortcut2: ").append(toIndentedString(shortcut2)).append("\n"); sb.append(" updateDate: ").append(toIndentedString(updateDate)).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