com.factset.sdk.UniversalScreening.models.ErrorObjectSource 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.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;
/**
* For errors and warnings found in screens, contains the paramID the error/warning belongs to
*/
@ApiModel(description = "For errors and warnings found in screens, contains the paramID the error/warning belongs to")
@JsonPropertyOrder({
ErrorObjectSource.JSON_PROPERTY_PARAMETER
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ErrorObjectSource implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_PARAMETER = "parameter";
private String parameter;
public ErrorObjectSource() {
}
public ErrorObjectSource parameter(String parameter) {
this.parameter = parameter;
return this;
}
/**
* Param ID
* @return parameter
**/
@jakarta.annotation.Nullable
@ApiModelProperty(example = "PARAM1", value = "Param ID")
@JsonProperty(JSON_PROPERTY_PARAMETER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getParameter() {
return parameter;
}
@JsonProperty(JSON_PROPERTY_PARAMETER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setParameter(String parameter) {
this.parameter = parameter;
}
/**
* Return true if this ErrorObjectSource object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorObjectSource errorObjectSource = (ErrorObjectSource) o;
return Objects.equals(this.parameter, errorObjectSource.parameter);
}
@Override
public int hashCode() {
return Objects.hash(parameter);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorObjectSource {\n");
sb.append(" parameter: ").append(toIndentedString(parameter)).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 ");
}
}