sh.ory.hydra.model.RejectRequest Maven / Gradle / Ivy
/*
* ORY Hydra
* Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
*
* The version of the OpenAPI document: latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package sh.ory.hydra.model;
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;
/**
* RejectRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-04-25T11:30:49.984261Z[GMT]")
public class RejectRequest {
public static final String SERIALIZED_NAME_ERROR = "error";
@SerializedName(SERIALIZED_NAME_ERROR)
private String error;
public static final String SERIALIZED_NAME_ERROR_DEBUG = "error_debug";
@SerializedName(SERIALIZED_NAME_ERROR_DEBUG)
private String errorDebug;
public static final String SERIALIZED_NAME_ERROR_DESCRIPTION = "error_description";
@SerializedName(SERIALIZED_NAME_ERROR_DESCRIPTION)
private String errorDescription;
public static final String SERIALIZED_NAME_ERROR_HINT = "error_hint";
@SerializedName(SERIALIZED_NAME_ERROR_HINT)
private String errorHint;
public static final String SERIALIZED_NAME_STATUS_CODE = "status_code";
@SerializedName(SERIALIZED_NAME_STATUS_CODE)
private Long statusCode;
public RejectRequest error(String error) {
this.error = error;
return this;
}
/**
* error
* @return error
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "error")
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
public RejectRequest errorDebug(String errorDebug) {
this.errorDebug = errorDebug;
return this;
}
/**
* error debug
* @return errorDebug
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "error debug")
public String getErrorDebug() {
return errorDebug;
}
public void setErrorDebug(String errorDebug) {
this.errorDebug = errorDebug;
}
public RejectRequest errorDescription(String errorDescription) {
this.errorDescription = errorDescription;
return this;
}
/**
* error description
* @return errorDescription
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "error description")
public String getErrorDescription() {
return errorDescription;
}
public void setErrorDescription(String errorDescription) {
this.errorDescription = errorDescription;
}
public RejectRequest errorHint(String errorHint) {
this.errorHint = errorHint;
return this;
}
/**
* error hint
* @return errorHint
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "error hint")
public String getErrorHint() {
return errorHint;
}
public void setErrorHint(String errorHint) {
this.errorHint = errorHint;
}
public RejectRequest statusCode(Long statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* status code
* @return statusCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "status code")
public Long getStatusCode() {
return statusCode;
}
public void setStatusCode(Long statusCode) {
this.statusCode = statusCode;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RejectRequest rejectRequest = (RejectRequest) o;
return Objects.equals(this.error, rejectRequest.error) &&
Objects.equals(this.errorDebug, rejectRequest.errorDebug) &&
Objects.equals(this.errorDescription, rejectRequest.errorDescription) &&
Objects.equals(this.errorHint, rejectRequest.errorHint) &&
Objects.equals(this.statusCode, rejectRequest.statusCode);
}
@Override
public int hashCode() {
return Objects.hash(error, errorDebug, errorDescription, errorHint, statusCode);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RejectRequest {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
sb.append(" errorDebug: ").append(toIndentedString(errorDebug)).append("\n");
sb.append(" errorDescription: ").append(toIndentedString(errorDescription)).append("\n");
sb.append(" errorHint: ").append(toIndentedString(errorHint)).append("\n");
sb.append(" statusCode: ").append(toIndentedString(statusCode)).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 ");
}
}