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

com.factset.sdk.IRNConfiguration.models.ContactCustomFieldSaveDto 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.ContactCustomFieldFormulaDto;
import com.factset.sdk.IRNConfiguration.models.ContactCustomFieldOptionSaveDto;
import com.factset.sdk.IRNConfiguration.models.ContactCustomFieldType;
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;


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

  public static final String JSON_PROPERTY_CODE = "code";
  private String code;

  public static final String JSON_PROPERTY_NAME = "name";
  private String name;

  public static final String JSON_PROPERTY_TYPE = "type";
  private ContactCustomFieldType type;

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

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

  public static final String JSON_PROPERTY_FIELD_FORMULA = "fieldFormula";
  private ContactCustomFieldFormulaDto fieldFormula;

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

  public ContactCustomFieldSaveDto() { 
  }

  @JsonCreator
  public ContactCustomFieldSaveDto(
    @JsonProperty(value=JSON_PROPERTY_CODE, required=true) String code, 
    @JsonProperty(value=JSON_PROPERTY_NAME, required=true) String name, 
    @JsonProperty(value=JSON_PROPERTY_TYPE, required=true) ContactCustomFieldType type, 
    @JsonProperty(value=JSON_PROPERTY_IS_HIDDEN, required=true) Boolean isHidden, 
    @JsonProperty(value=JSON_PROPERTY_IS_MANDATORY, required=true) Boolean isMandatory
  ) {
    this();
    this.code = code;
    this.name = name;
    this.type = type;
    this.isHidden = isHidden;
    this.isMandatory = isMandatory;
  }

  public ContactCustomFieldSaveDto code(String code) {
    this.code = code;
    return this;
  }

   /**
   * Get code
   * @return code
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "")
  @JsonProperty(JSON_PROPERTY_CODE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getCode() {
    return code;
  }


  @JsonProperty(JSON_PROPERTY_CODE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setCode(String code) {
    this.code = code;
  }


  public ContactCustomFieldSaveDto name(String name) {
    this.name = name;
    return this;
  }

   /**
   * Get name
   * @return name
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "")
  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getName() {
    return name;
  }


  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setName(String name) {
    this.name = name;
  }


  public ContactCustomFieldSaveDto type(ContactCustomFieldType type) {
    this.type = type;
    return this;
  }

   /**
   * Get type
   * @return type
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "")
  @JsonProperty(JSON_PROPERTY_TYPE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public ContactCustomFieldType getType() {
    return type;
  }


  @JsonProperty(JSON_PROPERTY_TYPE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setType(ContactCustomFieldType type) {
    this.type = type;
  }


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

   /**
   * Get isHidden
   * @return isHidden
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "")
  @JsonProperty(JSON_PROPERTY_IS_HIDDEN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Boolean getIsHidden() {
    return isHidden;
  }


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


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

   /**
   * Get isMandatory
   * @return isMandatory
  **/
  @javax.annotation.Nonnull
  @ApiModelProperty(required = true, value = "")
  @JsonProperty(JSON_PROPERTY_IS_MANDATORY)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public Boolean getIsMandatory() {
    return isMandatory;
  }


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


  public ContactCustomFieldSaveDto fieldFormula(ContactCustomFieldFormulaDto fieldFormula) {
    this.fieldFormula = fieldFormula;
    return this;
  }

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

  public ContactCustomFieldFormulaDto getFieldFormula() {
    return fieldFormula;
  }


  @JsonProperty(JSON_PROPERTY_FIELD_FORMULA)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setFieldFormula(ContactCustomFieldFormulaDto fieldFormula) {
    this.fieldFormula = fieldFormula;
  }


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

  public ContactCustomFieldSaveDto addContactCustomFieldOptionsItem(ContactCustomFieldOptionSaveDto 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 ContactCustomFieldSaveDto object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ContactCustomFieldSaveDto contactCustomFieldSaveDto = (ContactCustomFieldSaveDto) o;
    return Objects.equals(this.code, contactCustomFieldSaveDto.code) &&
        Objects.equals(this.name, contactCustomFieldSaveDto.name) &&
        Objects.equals(this.type, contactCustomFieldSaveDto.type) &&
        Objects.equals(this.isHidden, contactCustomFieldSaveDto.isHidden) &&
        Objects.equals(this.isMandatory, contactCustomFieldSaveDto.isMandatory) &&
        Objects.equals(this.fieldFormula, contactCustomFieldSaveDto.fieldFormula) &&
        equalsNullable(this.contactCustomFieldOptions, contactCustomFieldSaveDto.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(code, name, type, isHidden, isMandatory, fieldFormula, 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 ContactCustomFieldSaveDto {\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("    fieldFormula: ").append(toIndentedString(fieldFormula)).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