![JAR search and dependency download from the Maven repository](/logo.png)
com.factset.sdk.FactSetGlobalPrices.models.BatchErrorObject Maven / Gradle / Ivy
/*
* FactSet Global Prices API
* The FactSet Global Prices API provides end of day market pricing content using cloud and microservices technology, encompassing both pricing as well as corporate actions and events data.
*
* The version of the OpenAPI document: 1.7.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.FactSetGlobalPrices.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.factset.sdk.FactSetGlobalPrices.models.BatchErrorObjectLinks;
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 org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.factset.sdk.FactSetGlobalPrices.JSON;
/**
* BatchErrorObject
*/
@JsonPropertyOrder({
BatchErrorObject.JSON_PROPERTY_ID,
BatchErrorObject.JSON_PROPERTY_CODE,
BatchErrorObject.JSON_PROPERTY_LINKS,
BatchErrorObject.JSON_PROPERTY_TITLE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class BatchErrorObject implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_ID = "id";
private JsonNullable id = JsonNullable.undefined();
public static final String JSON_PROPERTY_CODE = "code";
private JsonNullable code = JsonNullable.undefined();
public static final String JSON_PROPERTY_LINKS = "links";
private BatchErrorObjectLinks links;
public static final String JSON_PROPERTY_TITLE = "title";
private JsonNullable title = JsonNullable.undefined();
public BatchErrorObject() {
}
public BatchErrorObject id(String id) {
this.id = JsonNullable.of(id);
return this;
}
/**
* A UUID for this particular occurrence of the problem.
* @return id
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "adb01824-252f-4420-b0c6-35a1e3507ef5", value = "A UUID for this particular occurrence of the problem.")
@JsonIgnore
public String getId() {
return id.orElse(null);
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getId_JsonNullable() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
public void setId_JsonNullable(JsonNullable id) {
this.id = id;
}
public void setId(String id) {
this.id = JsonNullable.of(id);
}
public BatchErrorObject code(String code) {
this.code = JsonNullable.of(code);
return this;
}
/**
* status
* @return code
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "GenericError", value = "status")
@JsonIgnore
public String getCode() {
return code.orElse(null);
}
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getCode_JsonNullable() {
return code;
}
@JsonProperty(JSON_PROPERTY_CODE)
public void setCode_JsonNullable(JsonNullable code) {
this.code = code;
}
public void setCode(String code) {
this.code = JsonNullable.of(code);
}
public BatchErrorObject links(BatchErrorObjectLinks links) {
this.links = links;
return this;
}
/**
* Get links
* @return links
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_LINKS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public BatchErrorObjectLinks getLinks() {
return links;
}
@JsonProperty(JSON_PROPERTY_LINKS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLinks(BatchErrorObjectLinks links) {
this.links = links;
}
public BatchErrorObject title(String title) {
this.title = JsonNullable.of(title);
return this;
}
/**
* The plain text error message
* @return title
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "Validation Error", value = "The plain text error message")
@JsonIgnore
public String getTitle() {
return title.orElse(null);
}
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getTitle_JsonNullable() {
return title;
}
@JsonProperty(JSON_PROPERTY_TITLE)
public void setTitle_JsonNullable(JsonNullable title) {
this.title = title;
}
public void setTitle(String title) {
this.title = JsonNullable.of(title);
}
/**
* Return true if this batchErrorObject object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BatchErrorObject batchErrorObject = (BatchErrorObject) o;
return equalsNullable(this.id, batchErrorObject.id) &&
equalsNullable(this.code, batchErrorObject.code) &&
Objects.equals(this.links, batchErrorObject.links) &&
equalsNullable(this.title, batchErrorObject.title);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(hashCodeNullable(id), hashCodeNullable(code), links, hashCodeNullable(title));
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BatchErrorObject {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" links: ").append(toIndentedString(links)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy