com.factset.sdk.FactSetTickHistory.models.Files Maven / Gradle / Ivy
/*
* Tick History
* Tick History provides dynamic access to historical tick data for a specific security for specific dates or date range.
*
* The version of the OpenAPI document: 2.3.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.FactSetTickHistory.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 java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.factset.sdk.FactSetTickHistory.JSON;
/**
* Array of data objects
*/
@ApiModel(description = "Array of data objects")
@JsonPropertyOrder({
Files.JSON_PROPERTY_FILE_NAME,
Files.JSON_PROPERTY_URL
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Files implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_FILE_NAME = "fileName";
private String fileName;
public static final String JSON_PROPERTY_URL = "url";
private String url;
public Files() {
}
public Files fileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* Name of the file(s) generated for the query requested
* @return fileName
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Name of the file(s) generated for the query requested")
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFileName() {
return fileName;
}
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Files url(String url) {
this.url = url;
return this;
}
/**
* Download link for the TickHistory file with requested parameters <p>This download link will expire after 24 hours</p>
* @return url
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = " Download link for the TickHistory file with requested parameters This download link will expire after 24 hours
")
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUrl() {
return url;
}
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUrl(String url) {
this.url = url;
}
/**
* Return true if this files object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Files files = (Files) o;
return Objects.equals(this.fileName, files.fileName) &&
Objects.equals(this.url, files.url);
}
@Override
public int hashCode() {
return Objects.hash(fileName, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Files {\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).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 ");
}
}