com.factset.sdk.OpenRisk.models.LabelsFactor 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
The newest version!
/*
* 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;
/**
* Labels relevant to calculation-levels with 'Factor' in the name
*/
@ApiModel(description = "Labels relevant to calculation-levels with 'Factor' in the name")
@JsonPropertyOrder({
LabelsFactor.JSON_PROPERTY_IDS,
LabelsFactor.JSON_PROPERTY_NAMES
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class LabelsFactor implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_IDS = "ids";
private java.util.List ids = new java.util.ArrayList<>();
public static final String JSON_PROPERTY_NAMES = "names";
private java.util.List names = new java.util.ArrayList<>();
public LabelsFactor() {
}
@JsonCreator
public LabelsFactor(
@JsonProperty(value=JSON_PROPERTY_IDS, required=true) java.util.List ids,
@JsonProperty(value=JSON_PROPERTY_NAMES, required=true) java.util.List names
) {
this();
this.ids = ids;
this.names = names;
}
public LabelsFactor ids(java.util.List ids) {
this.ids = ids;
return this;
}
public LabelsFactor addIdsItem(String idsItem) {
this.ids.add(idsItem);
return this;
}
/**
* Risk model factor identifiers
* @return ids
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "Risk model factor identifiers")
@JsonProperty(JSON_PROPERTY_IDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public java.util.List getIds() {
return ids;
}
@JsonProperty(JSON_PROPERTY_IDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setIds(java.util.List ids) {
this.ids = ids;
}
public LabelsFactor names(java.util.List names) {
this.names = names;
return this;
}
public LabelsFactor addNamesItem(String namesItem) {
this.names.add(namesItem);
return this;
}
/**
* Risk model factor names
* @return names
**/
@jakarta.annotation.Nonnull
@ApiModelProperty(required = true, value = "Risk model factor names")
@JsonProperty(JSON_PROPERTY_NAMES)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public java.util.List getNames() {
return names;
}
@JsonProperty(JSON_PROPERTY_NAMES)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setNames(java.util.List names) {
this.names = names;
}
/**
* Return true if this Labels_factor object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LabelsFactor labelsFactor = (LabelsFactor) o;
return Objects.equals(this.ids, labelsFactor.ids) &&
Objects.equals(this.names, labelsFactor.names);
}
@Override
public int hashCode() {
return Objects.hash(ids, names);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LabelsFactor {\n");
sb.append(" ids: ").append(toIndentedString(ids)).append("\n");
sb.append(" names: ").append(toIndentedString(names)).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 ");
}
}