jp.co.freee.accounting.models.ApprovalRequestResponseApprovalRequestApprovalFlowLogs 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;
/**
* ApprovalRequestResponseApprovalRequestApprovalFlowLogs
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ApprovalRequestResponseApprovalRequestApprovalFlowLogs {
/**
* 操作(apply: 申請, approve: 承認, force_approve: 代理承認, cancel: 取消, reject: 却下, feedback: 差戻し)
*/
@JsonAdapter(ActionEnum.Adapter.class)
public enum ActionEnum {
APPLY("apply"),
APPROVE("approve"),
FORCE_APPROVE("force_approve"),
CANCEL("cancel"),
REJECT("reject"),
FEEDBACK("feedback");
private String value;
ActionEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ActionEnum fromValue(String value) {
for (ActionEnum b : ActionEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final ActionEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ActionEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ActionEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_ACTION = "action";
@SerializedName(SERIALIZED_NAME_ACTION)
private ActionEnum action;
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
private String updatedAt;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
private Integer userId;
public ApprovalRequestResponseApprovalRequestApprovalFlowLogs() {
}
public ApprovalRequestResponseApprovalRequestApprovalFlowLogs action(ActionEnum action) {
this.action = action;
return this;
}
/**
* 操作(apply: 申請, approve: 承認, force_approve: 代理承認, cancel: 取消, reject: 却下, feedback: 差戻し)
* @return action
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "approve", required = true, value = "操作(apply: 申請, approve: 承認, force_approve: 代理承認, cancel: 取消, reject: 却下, feedback: 差戻し)")
public ActionEnum getAction() {
return action;
}
public void setAction(ActionEnum action) {
this.action = action;
}
public ApprovalRequestResponseApprovalRequestApprovalFlowLogs updatedAt(String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* 更新日時(ISO8601形式)
* @return updatedAt
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "2019-12-17T18:30:24+09:00", required = true, value = "更新日時(ISO8601形式)")
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
public ApprovalRequestResponseApprovalRequestApprovalFlowLogs userId(Integer userId) {
this.userId = userId;
return this;
}
/**
* ユーザーID
* minimum: 1
* maximum: 2147483647
* @return userId
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "1", required = true, value = "ユーザーID")
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ApprovalRequestResponseApprovalRequestApprovalFlowLogs approvalRequestResponseApprovalRequestApprovalFlowLogs = (ApprovalRequestResponseApprovalRequestApprovalFlowLogs) o;
return Objects.equals(this.action, approvalRequestResponseApprovalRequestApprovalFlowLogs.action) &&
Objects.equals(this.updatedAt, approvalRequestResponseApprovalRequestApprovalFlowLogs.updatedAt) &&
Objects.equals(this.userId, approvalRequestResponseApprovalRequestApprovalFlowLogs.userId);
}
@Override
public int hashCode() {
return Objects.hash(action, updatedAt, userId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ApprovalRequestResponseApprovalRequestApprovalFlowLogs {\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).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 ");
}
}