com.factset.sdk.OpenRisk.models.ErrorItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openrisk Show documentation
Show all versions of openrisk Show documentation
FactSet SDK for Java - openrisk
/*
* Open:Risk API
* Service to calculate parametric linear risk statistics and generate risk model asset identifier mappings.
*
* The version of the OpenAPI document: 1.26.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.factset.sdk.OpenRisk.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.factset.sdk.OpenRisk.JSON;
/**
* Error information for a particular occurrence of a problem with human-readable details describing the cause
*/
@ApiModel(description = "Error information for a particular occurrence of a problem with human-readable details describing the cause")
@JsonPropertyOrder({
ErrorItem.JSON_PROPERTY_ID,
ErrorItem.JSON_PROPERTY_CODE,
ErrorItem.JSON_PROPERTY_TITLE,
ErrorItem.JSON_PROPERTY_DETAIL
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ErrorItem implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_ID = "id";
private java.util.UUID id;
public static final String JSON_PROPERTY_CODE = "code";
private String code;
public static final String JSON_PROPERTY_TITLE = "title";
private String title;
public static final String JSON_PROPERTY_DETAIL = "detail";
private String detail;
public ErrorItem() {
}
@JsonCreator
public ErrorItem(
@JsonProperty(value=JSON_PROPERTY_ID, required=true) java.util.UUID id,
@JsonProperty(value=JSON_PROPERTY_CODE, required=true) String code,
@JsonProperty(value=JSON_PROPERTY_TITLE, required=true) String title
) {
this();
this.id = id;
this.code = code;
this.title = title;
}
public ErrorItem id(java.util.UUID id) {
this.id = id;
return this;
}
/**
* UUID for the particular occurrence of the problem
* @return id
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "UUID for the particular occurrence of the problem")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public java.util.UUID getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(java.util.UUID id) {
this.id = id;
}
public ErrorItem code(String code) {
this.code = code;
return this;
}
/**
* Error code for the problem type.
* @return code
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "Error code for the problem type.")
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getCode() {
return code;
}
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCode(String code) {
this.code = code;
}
public ErrorItem title(String title) {
this.title = title;
return this;
}
/**
* Human-readable summary of the problem tied to the error code and not specific to the particular occurrence of the problem
* @return title
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "Human-readable summary of the problem tied to the error code and not specific to the particular occurrence of the problem")
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getTitle() {
return title;
}
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTitle(String title) {
this.title = title;
}
public ErrorItem detail(String detail) {
this.detail = detail;
return this;
}
/**
* Human-readable explanation of the problem specific to the particular occurrence
* @return detail
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Human-readable explanation of the problem specific to the particular occurrence")
@JsonProperty(JSON_PROPERTY_DETAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDetail() {
return detail;
}
@JsonProperty(JSON_PROPERTY_DETAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDetail(String detail) {
this.detail = detail;
}
/**
* Return true if this ErrorItem object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorItem errorItem = (ErrorItem) o;
return Objects.equals(this.id, errorItem.id) &&
Objects.equals(this.code, errorItem.code) &&
Objects.equals(this.title, errorItem.title) &&
Objects.equals(this.detail, errorItem.detail);
}
@Override
public int hashCode() {
return Objects.hash(id, code, title, detail);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorItem {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append(" detail: ").append(toIndentedString(detail)).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 ");
}
}