com.anaptecs.jeaf.openapi.Problem Maven / Gradle / Ivy
/*
* Product Base Definitions
* This component represents the Open API interface of the accounting service.
*
* OpenAPI spec version: 0.0.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.anaptecs.jeaf.openapi;
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.v3.oas.annotations.media.Schema;
/**
* Problem
*/
public class Problem {
@JsonProperty("title")
private String title = null;
@JsonProperty("status")
private Integer status = null;
@JsonProperty("type")
private String type = null;
@JsonProperty("detail")
private String detail = null;
@JsonProperty("instance")
private String instance = null;
public Problem title(String title) {
this.title = title;
return this;
}
/**
* Get title
* @return title
**/
@Schema(required = true, description = "")
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Problem status(Integer status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@Schema(required = true, description = "")
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Problem type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@Schema(required = true, description = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Problem detail(String detail) {
this.detail = detail;
return this;
}
/**
* Get detail
* @return detail
**/
@Schema(required = true, description = "")
public String getDetail() {
return detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
public Problem instance(String instance) {
this.instance = instance;
return this;
}
/**
* Get instance
* @return instance
**/
@Schema(required = true, description = "")
public String getInstance() {
return instance;
}
public void setInstance(String instance) {
this.instance = instance;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Problem problem = (Problem) o;
return Objects.equals(this.title, problem.title) &&
Objects.equals(this.status, problem.status) &&
Objects.equals(this.type, problem.type) &&
Objects.equals(this.detail, problem.detail) &&
Objects.equals(this.instance, problem.instance);
}
@Override
public int hashCode() {
return Objects.hash(title, status, type, detail, instance);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Problem {\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" detail: ").append(toIndentedString(detail)).append("\n");
sb.append(" instance: ").append(toIndentedString(instance)).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 ");
}
}