org.finra.herd.sdk.model.StatusChangeReason Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.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 org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* StatusChangeReason
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class StatusChangeReason {
@JsonProperty("code")
private String code = null;
@JsonProperty("message")
private String message = null;
public StatusChangeReason code(String code) {
this.code = code;
return this;
}
/**
* The programmatic code for the state change reason
* @return code
**/
@ApiModelProperty(value = "The programmatic code for the state change reason")
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public StatusChangeReason message(String message) {
this.message = message;
return this;
}
/**
* The descriptive message for the state change reason
* @return message
**/
@ApiModelProperty(value = "The descriptive message for the state change reason")
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StatusChangeReason statusChangeReason = (StatusChangeReason) o;
return Objects.equals(this.code, statusChangeReason.code) &&
Objects.equals(this.message, statusChangeReason.message);
}
@Override
public int hashCode() {
return Objects.hash(code, message);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StatusChangeReason {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}