com.factset.sdk.IRNNotes.models.CustomFieldValueDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irnnotes Show documentation
Show all versions of irnnotes Show documentation
FactSet SDK for Java - irnnotes
/*
* IRN API v1
* Allows users to extract, create, update and configure IRN data.
*
* The version of the OpenAPI document: 1
*
*
* 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.IRNNotes.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 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.IRNNotes.JSON;
/**
* CustomFieldValueDto
*/
@JsonPropertyOrder({
CustomFieldValueDto.JSON_PROPERTY_CODE,
CustomFieldValueDto.JSON_PROPERTY_VALUE,
CustomFieldValueDto.JSON_PROPERTY_OPTIONS,
CustomFieldValueDto.JSON_PROPERTY_CONTACT_VALUES
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class CustomFieldValueDto implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_CODE = "code";
private JsonNullable code = JsonNullable.undefined();
public static final String JSON_PROPERTY_VALUE = "value";
private JsonNullable value = JsonNullable.undefined();
public static final String JSON_PROPERTY_OPTIONS = "options";
private JsonNullable> options = JsonNullable.>undefined();
public static final String JSON_PROPERTY_CONTACT_VALUES = "contactValues";
private JsonNullable> contactValues = JsonNullable.>undefined();
public CustomFieldValueDto() {
}
public CustomFieldValueDto code(String code) {
this.code = JsonNullable.of(code);
return this;
}
/**
* Get code
* @return code
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@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 CustomFieldValueDto value(String value) {
this.value = JsonNullable.of(value);
return this;
}
/**
* Get value
* @return value
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonIgnore
public String getValue() {
return value.orElse(null);
}
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getValue_JsonNullable() {
return value;
}
@JsonProperty(JSON_PROPERTY_VALUE)
public void setValue_JsonNullable(JsonNullable value) {
this.value = value;
}
public void setValue(String value) {
this.value = JsonNullable.of(value);
}
public CustomFieldValueDto options(java.util.List options) {
this.options = JsonNullable.>of(options);
return this;
}
public CustomFieldValueDto addOptionsItem(String optionsItem) {
if (this.options == null || !this.options.isPresent()) {
this.options = JsonNullable.>of(new java.util.ArrayList<>());
}
try {
this.options.get().add(optionsItem);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
}
/**
* Get options
* @return options
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonIgnore
public java.util.List getOptions() {
return options.orElse(null);
}
@JsonProperty(JSON_PROPERTY_OPTIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable> getOptions_JsonNullable() {
return options;
}
@JsonProperty(JSON_PROPERTY_OPTIONS)
public void setOptions_JsonNullable(JsonNullable> options) {
this.options = options;
}
public void setOptions(java.util.List options) {
this.options = JsonNullable.>of(options);
}
public CustomFieldValueDto contactValues(java.util.List contactValues) {
this.contactValues = JsonNullable.>of(contactValues);
return this;
}
public CustomFieldValueDto addContactValuesItem(java.util.UUID contactValuesItem) {
if (this.contactValues == null || !this.contactValues.isPresent()) {
this.contactValues = JsonNullable.>of(new java.util.ArrayList<>());
}
try {
this.contactValues.get().add(contactValuesItem);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
}
/**
* Get contactValues
* @return contactValues
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonIgnore
public java.util.List getContactValues() {
return contactValues.orElse(null);
}
@JsonProperty(JSON_PROPERTY_CONTACT_VALUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable> getContactValues_JsonNullable() {
return contactValues;
}
@JsonProperty(JSON_PROPERTY_CONTACT_VALUES)
public void setContactValues_JsonNullable(JsonNullable> contactValues) {
this.contactValues = contactValues;
}
public void setContactValues(java.util.List contactValues) {
this.contactValues = JsonNullable.>of(contactValues);
}
/**
* Return true if this CustomFieldValueDto object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CustomFieldValueDto customFieldValueDto = (CustomFieldValueDto) o;
return equalsNullable(this.code, customFieldValueDto.code) &&
equalsNullable(this.value, customFieldValueDto.value) &&
equalsNullable(this.options, customFieldValueDto.options) &&
equalsNullable(this.contactValues, customFieldValueDto.contactValues);
}
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(code), hashCodeNullable(value), hashCodeNullable(options), hashCodeNullable(contactValues));
}
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 CustomFieldValueDto {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" options: ").append(toIndentedString(options)).append("\n");
sb.append(" contactValues: ").append(toIndentedString(contactValues)).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 ");
}
}