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

com.factset.sdk.FixedIncomeCalculation.models.FIMunicipalBondsForJobSettings Maven / Gradle / Ivy

The newest version!
/*
 * FI API
 * Allow clients to fetch Analytics through APIs.
 *
 * The version of the OpenAPI document: 3.13.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.FixedIncomeCalculation.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.FixedIncomeCalculation.JSON;


/**
 * FIMunicipalBondsForJobSettings
 */
@JsonPropertyOrder({
  FIMunicipalBondsForJobSettings.JSON_PROPERTY_ALLOW_SINK_FOR_INSTALLMENT_PAYMENT,
  FIMunicipalBondsForJobSettings.JSON_PROPERTY_IGNORE_SINKING_FUND,
  FIMunicipalBondsForJobSettings.JSON_PROPERTY_USE_ANTICIPATED_SINK_SCHEDULE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")

public class FIMunicipalBondsForJobSettings implements Serializable {
  private static final long serialVersionUID = 1L;

  public static final String JSON_PROPERTY_ALLOW_SINK_FOR_INSTALLMENT_PAYMENT = "allowSinkForInstallmentPayment";
  private JsonNullable allowSinkForInstallmentPayment = JsonNullable.undefined();

  public static final String JSON_PROPERTY_IGNORE_SINKING_FUND = "ignoreSinkingFund";
  private JsonNullable ignoreSinkingFund = JsonNullable.undefined();

  public static final String JSON_PROPERTY_USE_ANTICIPATED_SINK_SCHEDULE = "useAnticipatedSinkSchedule";
  private JsonNullable useAnticipatedSinkSchedule = JsonNullable.undefined();

  public FIMunicipalBondsForJobSettings() { 
  }

  public FIMunicipalBondsForJobSettings allowSinkForInstallmentPayment(Boolean allowSinkForInstallmentPayment) {
    this.allowSinkForInstallmentPayment = JsonNullable.of(allowSinkForInstallmentPayment);
    return this;
  }

   /**
   * Allow Sink For Installment Payment
   * @return allowSinkForInstallmentPayment
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(value = "Allow Sink For Installment Payment")
  @JsonIgnore

  public Boolean getAllowSinkForInstallmentPayment() {
        return allowSinkForInstallmentPayment.orElse(null);
  }

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

  public JsonNullable getAllowSinkForInstallmentPayment_JsonNullable() {
    return allowSinkForInstallmentPayment;
  }
  
  @JsonProperty(JSON_PROPERTY_ALLOW_SINK_FOR_INSTALLMENT_PAYMENT)
  public void setAllowSinkForInstallmentPayment_JsonNullable(JsonNullable allowSinkForInstallmentPayment) {
    this.allowSinkForInstallmentPayment = allowSinkForInstallmentPayment;
  }

  public void setAllowSinkForInstallmentPayment(Boolean allowSinkForInstallmentPayment) {
    this.allowSinkForInstallmentPayment = JsonNullable.of(allowSinkForInstallmentPayment);
  }


  public FIMunicipalBondsForJobSettings ignoreSinkingFund(Boolean ignoreSinkingFund) {
    this.ignoreSinkingFund = JsonNullable.of(ignoreSinkingFund);
    return this;
  }

   /**
   * Ignore Sinking Fund Schedule
   * @return ignoreSinkingFund
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(value = "Ignore Sinking Fund Schedule")
  @JsonIgnore

  public Boolean getIgnoreSinkingFund() {
        return ignoreSinkingFund.orElse(null);
  }

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

  public JsonNullable getIgnoreSinkingFund_JsonNullable() {
    return ignoreSinkingFund;
  }
  
  @JsonProperty(JSON_PROPERTY_IGNORE_SINKING_FUND)
  public void setIgnoreSinkingFund_JsonNullable(JsonNullable ignoreSinkingFund) {
    this.ignoreSinkingFund = ignoreSinkingFund;
  }

  public void setIgnoreSinkingFund(Boolean ignoreSinkingFund) {
    this.ignoreSinkingFund = JsonNullable.of(ignoreSinkingFund);
  }


  public FIMunicipalBondsForJobSettings useAnticipatedSinkSchedule(Boolean useAnticipatedSinkSchedule) {
    this.useAnticipatedSinkSchedule = JsonNullable.of(useAnticipatedSinkSchedule);
    return this;
  }

   /**
   * Anticipate Sink Schedule
   * @return useAnticipatedSinkSchedule
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(value = "Anticipate Sink Schedule")
  @JsonIgnore

  public Boolean getUseAnticipatedSinkSchedule() {
        return useAnticipatedSinkSchedule.orElse(null);
  }

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

  public JsonNullable getUseAnticipatedSinkSchedule_JsonNullable() {
    return useAnticipatedSinkSchedule;
  }
  
  @JsonProperty(JSON_PROPERTY_USE_ANTICIPATED_SINK_SCHEDULE)
  public void setUseAnticipatedSinkSchedule_JsonNullable(JsonNullable useAnticipatedSinkSchedule) {
    this.useAnticipatedSinkSchedule = useAnticipatedSinkSchedule;
  }

  public void setUseAnticipatedSinkSchedule(Boolean useAnticipatedSinkSchedule) {
    this.useAnticipatedSinkSchedule = JsonNullable.of(useAnticipatedSinkSchedule);
  }


  /**
   * Return true if this FIMunicipalBondsForJobSettings object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    FIMunicipalBondsForJobSettings fiMunicipalBondsForJobSettings = (FIMunicipalBondsForJobSettings) o;
    return equalsNullable(this.allowSinkForInstallmentPayment, fiMunicipalBondsForJobSettings.allowSinkForInstallmentPayment) &&
        equalsNullable(this.ignoreSinkingFund, fiMunicipalBondsForJobSettings.ignoreSinkingFund) &&
        equalsNullable(this.useAnticipatedSinkSchedule, fiMunicipalBondsForJobSettings.useAnticipatedSinkSchedule);
  }

  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(allowSinkForInstallmentPayment), hashCodeNullable(ignoreSinkingFund), hashCodeNullable(useAnticipatedSinkSchedule));
  }

  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 FIMunicipalBondsForJobSettings {\n");
    sb.append("    allowSinkForInstallmentPayment: ").append(toIndentedString(allowSinkForInstallmentPayment)).append("\n");
    sb.append("    ignoreSinkingFund: ").append(toIndentedString(ignoreSinkingFund)).append("\n");
    sb.append("    useAnticipatedSinkSchedule: ").append(toIndentedString(useAnticipatedSinkSchedule)).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