com.factset.sdk.UniversalScreening.models.ErrorObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of universalscreening Show documentation
Show all versions of universalscreening Show documentation
FactSet SDK for Java - universalscreening
The newest version!
/*
* Universal Screening API
* Through the Universal Screening API, you can access the power of FactSet's Universal Screening Application. Calculate and return the results of your saved Universal Screens.
*
* The version of the OpenAPI document: 2.0.2
* 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.UniversalScreening.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.factset.sdk.UniversalScreening.models.ErrorCode;
import com.factset.sdk.UniversalScreening.models.ErrorObjectSource;
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.UniversalScreening.JSON;
/**
* Associated Error Objects
*/
@ApiModel(description = "Associated Error Objects")
@JsonPropertyOrder({
ErrorObject.JSON_PROPERTY_CODE,
ErrorObject.JSON_PROPERTY_ID,
ErrorObject.JSON_PROPERTY_SOURCE,
ErrorObject.JSON_PROPERTY_TITLE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ErrorObject implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_CODE = "code";
private ErrorCode code;
public static final String JSON_PROPERTY_ID = "id";
private java.util.UUID id;
public static final String JSON_PROPERTY_SOURCE = "source";
private ErrorObjectSource source;
public static final String JSON_PROPERTY_TITLE = "title";
private String title;
public ErrorObject() {
}
public ErrorObject code(ErrorCode code) {
this.code = code;
return this;
}
/**
* Get code
* @return code
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public ErrorCode getCode() {
return code;
}
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCode(ErrorCode code) {
this.code = code;
}
public ErrorObject id(java.util.UUID id) {
this.id = id;
return this;
}
/**
* A unique ID for the occurrence of the error. It is advised to log this code and include it if you contact FactSet support desk.
* @return id
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "123e4567-e89b-12d3-a456-426655440002", value = "A unique ID for the occurrence of the error. It is advised to log this code and include it if you contact FactSet support desk.")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public java.util.UUID getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(java.util.UUID id) {
this.id = id;
}
public ErrorObject source(ErrorObjectSource source) {
this.source = source;
return this;
}
/**
* Get source
* @return source
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SOURCE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public ErrorObjectSource getSource() {
return source;
}
@JsonProperty(JSON_PROPERTY_SOURCE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSource(ErrorObjectSource source) {
this.source = source;
}
public ErrorObject title(String title) {
this.title = title;
return this;
}
/**
* A description of the error
* @return title
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "Parameter Error", value = "A description of the error")
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTitle() {
return title;
}
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTitle(String title) {
this.title = title;
}
/**
* Return true if this ErrorObject object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorObject errorObject = (ErrorObject) o;
return Objects.equals(this.code, errorObject.code) &&
Objects.equals(this.id, errorObject.id) &&
Objects.equals(this.source, errorObject.source) &&
Objects.equals(this.title, errorObject.title);
}
@Override
public int hashCode() {
return Objects.hash(code, id, source, title);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorObject {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).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 ");
}
}