com.factset.sdk.FactSetFunds.models.ErrorResponseSubErrors Maven / Gradle / Ivy
Show all versions of factsetfunds Show documentation
/*
* FactSet Funds API
* FactSet Mutual Funds data offers over 50 fund- and share class-specific data points for mutual funds listed in the United States. FactSet Mutual Funds Reference provides fund-specific reference information as well as FactSet's proprietary classification system. It includes but is not limited to the following coverage * Fund descriptions * A seven-tier classification system * Leverage information * Fees and expenses * Portfolio managers FactSet Mutual Funds Time Series provides quantitative data items on a historical basis. It includes but is not limited to the following coverage * Net asset value * Fund flows * Assets under management * Total return
*
* The version of the OpenAPI document: 1.0.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.FactSetFunds.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.FactSetFunds.JSON;
/**
* subErrors related to the error message. Null if not applicable.
*/
@ApiModel(description = "subErrors related to the error message. Null if not applicable.")
@JsonPropertyOrder({
ErrorResponseSubErrors.JSON_PROPERTY_OBJECT,
ErrorResponseSubErrors.JSON_PROPERTY_FIELD,
ErrorResponseSubErrors.JSON_PROPERTY_MESSAGE,
ErrorResponseSubErrors.JSON_PROPERTY_REJECTED_VALUE
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ErrorResponseSubErrors implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_OBJECT = "object";
private String _object;
public static final String JSON_PROPERTY_FIELD = "field";
private String field;
public static final String JSON_PROPERTY_MESSAGE = "message";
private String message;
public static final String JSON_PROPERTY_REJECTED_VALUE = "rejectedValue";
private java.util.List rejectedValue = null;
public ErrorResponseSubErrors() {
}
public ErrorResponseSubErrors _object(String _object) {
this._object = _object;
return this;
}
/**
* the operation ID
* @return _object
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "the operation ID")
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getObject() {
return _object;
}
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setObject(String _object) {
this._object = _object;
}
public ErrorResponseSubErrors field(String field) {
this.field = field;
return this;
}
/**
* Parameter Field Name
* @return field
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Parameter Field Name")
@JsonProperty(JSON_PROPERTY_FIELD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getField() {
return field;
}
@JsonProperty(JSON_PROPERTY_FIELD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setField(String field) {
this.field = field;
}
public ErrorResponseSubErrors message(String message) {
this.message = message;
return this;
}
/**
* Error message
* @return message
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Error message")
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMessage() {
return message;
}
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMessage(String message) {
this.message = message;
}
public ErrorResponseSubErrors rejectedValue(java.util.List rejectedValue) {
this.rejectedValue = rejectedValue;
return this;
}
public ErrorResponseSubErrors addRejectedValueItem(String rejectedValueItem) {
if (this.rejectedValue == null) {
this.rejectedValue = new java.util.ArrayList<>();
}
this.rejectedValue.add(rejectedValueItem);
return this;
}
/**
* Rejected Values in an Array
* @return rejectedValue
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Rejected Values in an Array")
@JsonProperty(JSON_PROPERTY_REJECTED_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public java.util.List getRejectedValue() {
return rejectedValue;
}
@JsonProperty(JSON_PROPERTY_REJECTED_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRejectedValue(java.util.List rejectedValue) {
this.rejectedValue = rejectedValue;
}
/**
* Return true if this errorResponse_subErrors object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorResponseSubErrors errorResponseSubErrors = (ErrorResponseSubErrors) o;
return Objects.equals(this._object, errorResponseSubErrors._object) &&
Objects.equals(this.field, errorResponseSubErrors.field) &&
Objects.equals(this.message, errorResponseSubErrors.message) &&
Objects.equals(this.rejectedValue, errorResponseSubErrors.rejectedValue);
}
@Override
public int hashCode() {
return Objects.hash(_object, field, message, rejectedValue);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorResponseSubErrors {\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" field: ").append(toIndentedString(field)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).append("\n");
sb.append(" rejectedValue: ").append(toIndentedString(rejectedValue)).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 ");
}
}