All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.factset.sdk.IRNConfiguration.models.ContactCustomFieldDto Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
/*
 * 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.IRNConfiguration.models;

import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.factset.sdk.IRNConfiguration.models.ContactCustomFieldOptionDto;
import com.factset.sdk.IRNConfiguration.models.FormulaConfigDto;
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.IRNConfiguration.JSON;


/**
 * ContactCustomFieldDto
 */
@JsonPropertyOrder({
  ContactCustomFieldDto.JSON_PROPERTY_ID,
  ContactCustomFieldDto.JSON_PROPERTY_CODE,
  ContactCustomFieldDto.JSON_PROPERTY_NAME,
  ContactCustomFieldDto.JSON_PROPERTY_TYPE,
  ContactCustomFieldDto.JSON_PROPERTY_IS_HIDDEN,
  ContactCustomFieldDto.JSON_PROPERTY_IS_MANDATORY,
  ContactCustomFieldDto.JSON_PROPERTY_FORMULA_CONFIG,
  ContactCustomFieldDto.JSON_PROPERTY_CONTACT_CUSTOM_FIELD_OPTIONS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ContactCustomFieldDto implements Serializable {
  private static final long serialVersionUID = 1L;

  public static final String JSON_PROPERTY_ID = "id";
  private java.util.UUID id;

  public static final String JSON_PROPERTY_CODE = "code";
  private JsonNullable code = JsonNullable.undefined();

  public static final String JSON_PROPERTY_NAME = "name";
  private JsonNullable name = JsonNullable.undefined();

  public static final String JSON_PROPERTY_TYPE = "type";
  private JsonNullable type = JsonNullable.undefined();

  public static final String JSON_PROPERTY_IS_HIDDEN = "isHidden";
  private Boolean isHidden;

  public static final String JSON_PROPERTY_IS_MANDATORY = "isMandatory";
  private Boolean isMandatory;

  public static final String JSON_PROPERTY_FORMULA_CONFIG = "formulaConfig";
  private FormulaConfigDto formulaConfig;

  public static final String JSON_PROPERTY_CONTACT_CUSTOM_FIELD_OPTIONS = "contactCustomFieldOptions";
  private JsonNullable> contactCustomFieldOptions = JsonNullable.>undefined();

  public ContactCustomFieldDto() { 
  }

  public ContactCustomFieldDto id(java.util.UUID id) {
    this.id = id;
    return this;
  }

   /**
   * Get id
   * @return id
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_ID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public java.util.UUID getId() {
    return id;
  }


  @JsonProperty(JSON_PROPERTY_ID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setId(java.util.UUID id) {
    this.id = id;
  }


  public ContactCustomFieldDto code(String code) {
    this.code = JsonNullable.of(code);
    return this;
  }

   /**
   * Get code
   * @return code
  **/
  @javax.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 ContactCustomFieldDto name(String name) {
    this.name = JsonNullable.of(name);
    return this;
  }

   /**
   * Get name
   * @return name
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonIgnore

  public String getName() {
        return name.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getName_JsonNullable() {
    return name;
  }
  
  @JsonProperty(JSON_PROPERTY_NAME)
  public void setName_JsonNullable(JsonNullable name) {
    this.name = name;
  }

  public void setName(String name) {
    this.name = JsonNullable.of(name);
  }


  public ContactCustomFieldDto type(String type) {
    this.type = JsonNullable.of(type);
    return this;
  }

   /**
   * Get type
   * @return type
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonIgnore

  public String getType() {
        return type.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_TYPE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getType_JsonNullable() {
    return type;
  }
  
  @JsonProperty(JSON_PROPERTY_TYPE)
  public void setType_JsonNullable(JsonNullable type) {
    this.type = type;
  }

  public void setType(String type) {
    this.type = JsonNullable.of(type);
  }


  public ContactCustomFieldDto isHidden(Boolean isHidden) {
    this.isHidden = isHidden;
    return this;
  }

   /**
   * Get isHidden
   * @return isHidden
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_IS_HIDDEN)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Boolean getIsHidden() {
    return isHidden;
  }


  @JsonProperty(JSON_PROPERTY_IS_HIDDEN)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setIsHidden(Boolean isHidden) {
    this.isHidden = isHidden;
  }


  public ContactCustomFieldDto isMandatory(Boolean isMandatory) {
    this.isMandatory = isMandatory;
    return this;
  }

   /**
   * Get isMandatory
   * @return isMandatory
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_IS_MANDATORY)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public Boolean getIsMandatory() {
    return isMandatory;
  }


  @JsonProperty(JSON_PROPERTY_IS_MANDATORY)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setIsMandatory(Boolean isMandatory) {
    this.isMandatory = isMandatory;
  }


  public ContactCustomFieldDto formulaConfig(FormulaConfigDto formulaConfig) {
    this.formulaConfig = formulaConfig;
    return this;
  }

   /**
   * Get formulaConfig
   * @return formulaConfig
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonProperty(JSON_PROPERTY_FORMULA_CONFIG)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public FormulaConfigDto getFormulaConfig() {
    return formulaConfig;
  }


  @JsonProperty(JSON_PROPERTY_FORMULA_CONFIG)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setFormulaConfig(FormulaConfigDto formulaConfig) {
    this.formulaConfig = formulaConfig;
  }


  public ContactCustomFieldDto contactCustomFieldOptions(java.util.List contactCustomFieldOptions) {
    this.contactCustomFieldOptions = JsonNullable.>of(contactCustomFieldOptions);
    return this;
  }

  public ContactCustomFieldDto addContactCustomFieldOptionsItem(ContactCustomFieldOptionDto contactCustomFieldOptionsItem) {
    if (this.contactCustomFieldOptions == null || !this.contactCustomFieldOptions.isPresent()) {
      this.contactCustomFieldOptions = JsonNullable.>of(new java.util.ArrayList<>());
    }
    try {
      this.contactCustomFieldOptions.get().add(contactCustomFieldOptionsItem);
    } catch (java.util.NoSuchElementException e) {
      // this can never happen, as we make sure above that the value is present
    }
    return this;
  }

   /**
   * Get contactCustomFieldOptions
   * @return contactCustomFieldOptions
  **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")
  @JsonIgnore

  public java.util.List getContactCustomFieldOptions() {
        return contactCustomFieldOptions.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_CONTACT_CUSTOM_FIELD_OPTIONS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable> getContactCustomFieldOptions_JsonNullable() {
    return contactCustomFieldOptions;
  }
  
  @JsonProperty(JSON_PROPERTY_CONTACT_CUSTOM_FIELD_OPTIONS)
  public void setContactCustomFieldOptions_JsonNullable(JsonNullable> contactCustomFieldOptions) {
    this.contactCustomFieldOptions = contactCustomFieldOptions;
  }

  public void setContactCustomFieldOptions(java.util.List contactCustomFieldOptions) {
    this.contactCustomFieldOptions = JsonNullable.>of(contactCustomFieldOptions);
  }


  /**
   * Return true if this ContactCustomFieldDto object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ContactCustomFieldDto contactCustomFieldDto = (ContactCustomFieldDto) o;
    return Objects.equals(this.id, contactCustomFieldDto.id) &&
        equalsNullable(this.code, contactCustomFieldDto.code) &&
        equalsNullable(this.name, contactCustomFieldDto.name) &&
        equalsNullable(this.type, contactCustomFieldDto.type) &&
        Objects.equals(this.isHidden, contactCustomFieldDto.isHidden) &&
        Objects.equals(this.isMandatory, contactCustomFieldDto.isMandatory) &&
        Objects.equals(this.formulaConfig, contactCustomFieldDto.formulaConfig) &&
        equalsNullable(this.contactCustomFieldOptions, contactCustomFieldDto.contactCustomFieldOptions);
  }

  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(id, hashCodeNullable(code), hashCodeNullable(name), hashCodeNullable(type), isHidden, isMandatory, formulaConfig, hashCodeNullable(contactCustomFieldOptions));
  }

  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 ContactCustomFieldDto {\n");
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    code: ").append(toIndentedString(code)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    type: ").append(toIndentedString(type)).append("\n");
    sb.append("    isHidden: ").append(toIndentedString(isHidden)).append("\n");
    sb.append("    isMandatory: ").append(toIndentedString(isMandatory)).append("\n");
    sb.append("    formulaConfig: ").append(toIndentedString(formulaConfig)).append("\n");
    sb.append("    contactCustomFieldOptions: ").append(toIndentedString(contactCustomFieldOptions)).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 - 2024 Weber Informatics LLC | Privacy Policy