com.factset.sdk.PAEngine.models.PACommentaryDate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paengine Show documentation
Show all versions of paengine Show documentation
FactSet SDK for Java - paengine
/*
* PA Engine API
* Allow clients to fetch Analytics through APIs.
*
* The version of the OpenAPI document: 3.16.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.PAEngine.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.PAEngine.JSON;
/**
* PACommentaryDate
*/
@JsonPropertyOrder({
PACommentaryDate.JSON_PROPERTY_YYYYMMDD,
PACommentaryDate.JSON_PROPERTY_RELATIVE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PACommentaryDate implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_YYYYMMDD = "yyyymmdd";
private JsonNullable yyyymmdd = JsonNullable.undefined();
public static final String JSON_PROPERTY_RELATIVE = "relative";
private JsonNullable relative = JsonNullable.undefined();
public PACommentaryDate() {
}
public PACommentaryDate yyyymmdd(Integer yyyymmdd) {
this.yyyymmdd = JsonNullable.of(yyyymmdd);
return this;
}
/**
* Date can be either absolute (YYYYMMDD) or relative, but only one format should be set at a time.
* @return yyyymmdd
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Date can be either absolute (YYYYMMDD) or relative, but only one format should be set at a time.")
@JsonIgnore
public Integer getYyyymmdd() {
return yyyymmdd.orElse(null);
}
@JsonProperty(JSON_PROPERTY_YYYYMMDD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getYyyymmdd_JsonNullable() {
return yyyymmdd;
}
@JsonProperty(JSON_PROPERTY_YYYYMMDD)
public void setYyyymmdd_JsonNullable(JsonNullable yyyymmdd) {
this.yyyymmdd = yyyymmdd;
}
public void setYyyymmdd(Integer yyyymmdd) {
this.yyyymmdd = JsonNullable.of(yyyymmdd);
}
public PACommentaryDate relative(String relative) {
this.relative = JsonNullable.of(relative);
return this;
}
/**
* Date can be either relative or absolute (YYYYMMDD), but only one format should be set at a time.
* @return relative
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Date can be either relative or absolute (YYYYMMDD), but only one format should be set at a time.")
@JsonIgnore
public String getRelative() {
return relative.orElse(null);
}
@JsonProperty(JSON_PROPERTY_RELATIVE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getRelative_JsonNullable() {
return relative;
}
@JsonProperty(JSON_PROPERTY_RELATIVE)
public void setRelative_JsonNullable(JsonNullable relative) {
this.relative = relative;
}
public void setRelative(String relative) {
this.relative = JsonNullable.of(relative);
}
/**
* Return true if this PACommentaryDate object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PACommentaryDate paCommentaryDate = (PACommentaryDate) o;
return equalsNullable(this.yyyymmdd, paCommentaryDate.yyyymmdd) &&
equalsNullable(this.relative, paCommentaryDate.relative);
}
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(yyyymmdd), hashCodeNullable(relative));
}
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 PACommentaryDate {\n");
sb.append(" yyyymmdd: ").append(toIndentedString(yyyymmdd)).append("\n");
sb.append(" relative: ").append(toIndentedString(relative)).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 ");
}
}