com.factset.sdk.IRNConfiguration.models.ApprovalLevelConfigDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irnconfiguration Show documentation
Show all versions of irnconfiguration Show documentation
FactSet SDK for Java - irnconfiguration
/*
* 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.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;
/**
* ApprovalLevelConfigDto
*/
@JsonPropertyOrder({
ApprovalLevelConfigDto.JSON_PROPERTY_NAME,
ApprovalLevelConfigDto.JSON_PROPERTY_APPROVER_IDS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ApprovalLevelConfigDto implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_NAME = "name";
private JsonNullable name = JsonNullable.undefined();
public static final String JSON_PROPERTY_APPROVER_IDS = "approverIds";
private JsonNullable> approverIds = JsonNullable.>undefined();
public ApprovalLevelConfigDto() {
}
public ApprovalLevelConfigDto 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 ApprovalLevelConfigDto approverIds(java.util.List approverIds) {
this.approverIds = JsonNullable.>of(approverIds);
return this;
}
public ApprovalLevelConfigDto addApproverIdsItem(java.util.UUID approverIdsItem) {
if (this.approverIds == null || !this.approverIds.isPresent()) {
this.approverIds = JsonNullable.>of(new java.util.ArrayList<>());
}
try {
this.approverIds.get().add(approverIdsItem);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
}
/**
* Get approverIds
* @return approverIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonIgnore
public java.util.List getApproverIds() {
return approverIds.orElse(null);
}
@JsonProperty(JSON_PROPERTY_APPROVER_IDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable> getApproverIds_JsonNullable() {
return approverIds;
}
@JsonProperty(JSON_PROPERTY_APPROVER_IDS)
public void setApproverIds_JsonNullable(JsonNullable> approverIds) {
this.approverIds = approverIds;
}
public void setApproverIds(java.util.List approverIds) {
this.approverIds = JsonNullable.>of(approverIds);
}
/**
* Return true if this ApprovalLevelConfigDto object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ApprovalLevelConfigDto approvalLevelConfigDto = (ApprovalLevelConfigDto) o;
return equalsNullable(this.name, approvalLevelConfigDto.name) &&
equalsNullable(this.approverIds, approvalLevelConfigDto.approverIds);
}
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(name), hashCodeNullable(approverIds));
}
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 ApprovalLevelConfigDto {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" approverIds: ").append(toIndentedString(approverIds)).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 ");
}
}