org.finra.herd.sdk.model.StorageBusinessObjectDefinitionDailyUploadStat Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.joda.time.DateTime;
/**
* StorageBusinessObjectDefinitionDailyUploadStat
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class StorageBusinessObjectDefinitionDailyUploadStat {
@JsonProperty("uploadDate")
private DateTime uploadDate = null;
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("dataProviderName")
private String dataProviderName = null;
@JsonProperty("businessObjectDefinitionName")
private String businessObjectDefinitionName = null;
@JsonProperty("totalFiles")
private Long totalFiles = null;
@JsonProperty("totalBytes")
private Long totalBytes = null;
public StorageBusinessObjectDefinitionDailyUploadStat uploadDate(DateTime uploadDate) {
this.uploadDate = uploadDate;
return this;
}
/**
* The upload date in YYYY-MM-DD format
* @return uploadDate
**/
@ApiModelProperty(required = true, value = "The upload date in YYYY-MM-DD format")
public DateTime getUploadDate() {
return uploadDate;
}
public void setUploadDate(DateTime uploadDate) {
this.uploadDate = uploadDate;
}
public StorageBusinessObjectDefinitionDailyUploadStat namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* The Namespace that Business Object Definition is associated with
* @return namespace
**/
@ApiModelProperty(required = true, value = "The Namespace that Business Object Definition is associated with")
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public StorageBusinessObjectDefinitionDailyUploadStat dataProviderName(String dataProviderName) {
this.dataProviderName = dataProviderName;
return this;
}
/**
* The name of the Data Provider that Business Object Definition is associated with
* @return dataProviderName
**/
@ApiModelProperty(required = true, value = "The name of the Data Provider that Business Object Definition is associated with")
public String getDataProviderName() {
return dataProviderName;
}
public void setDataProviderName(String dataProviderName) {
this.dataProviderName = dataProviderName;
}
public StorageBusinessObjectDefinitionDailyUploadStat businessObjectDefinitionName(String businessObjectDefinitionName) {
this.businessObjectDefinitionName = businessObjectDefinitionName;
return this;
}
/**
* The name of the Business Object Definition
* @return businessObjectDefinitionName
**/
@ApiModelProperty(required = true, value = "The name of the Business Object Definition")
public String getBusinessObjectDefinitionName() {
return businessObjectDefinitionName;
}
public void setBusinessObjectDefinitionName(String businessObjectDefinitionName) {
this.businessObjectDefinitionName = businessObjectDefinitionName;
}
public StorageBusinessObjectDefinitionDailyUploadStat totalFiles(Long totalFiles) {
this.totalFiles = totalFiles;
return this;
}
/**
* The total number of files uploaded to the storage on the date specified
* @return totalFiles
**/
@ApiModelProperty(value = "The total number of files uploaded to the storage on the date specified")
public Long getTotalFiles() {
return totalFiles;
}
public void setTotalFiles(Long totalFiles) {
this.totalFiles = totalFiles;
}
public StorageBusinessObjectDefinitionDailyUploadStat totalBytes(Long totalBytes) {
this.totalBytes = totalBytes;
return this;
}
/**
* The total number of bytes uploaded to the storage on the date specified
* @return totalBytes
**/
@ApiModelProperty(value = "The total number of bytes uploaded to the storage on the date specified")
public Long getTotalBytes() {
return totalBytes;
}
public void setTotalBytes(Long totalBytes) {
this.totalBytes = totalBytes;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StorageBusinessObjectDefinitionDailyUploadStat storageBusinessObjectDefinitionDailyUploadStat = (StorageBusinessObjectDefinitionDailyUploadStat) o;
return Objects.equals(this.uploadDate, storageBusinessObjectDefinitionDailyUploadStat.uploadDate) &&
Objects.equals(this.namespace, storageBusinessObjectDefinitionDailyUploadStat.namespace) &&
Objects.equals(this.dataProviderName, storageBusinessObjectDefinitionDailyUploadStat.dataProviderName) &&
Objects.equals(this.businessObjectDefinitionName, storageBusinessObjectDefinitionDailyUploadStat.businessObjectDefinitionName) &&
Objects.equals(this.totalFiles, storageBusinessObjectDefinitionDailyUploadStat.totalFiles) &&
Objects.equals(this.totalBytes, storageBusinessObjectDefinitionDailyUploadStat.totalBytes);
}
@Override
public int hashCode() {
return Objects.hash(uploadDate, namespace, dataProviderName, businessObjectDefinitionName, totalFiles, totalBytes);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StorageBusinessObjectDefinitionDailyUploadStat {\n");
sb.append(" uploadDate: ").append(toIndentedString(uploadDate)).append("\n");
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
sb.append(" dataProviderName: ").append(toIndentedString(dataProviderName)).append("\n");
sb.append(" businessObjectDefinitionName: ").append(toIndentedString(businessObjectDefinitionName)).append("\n");
sb.append(" totalFiles: ").append(toIndentedString(totalFiles)).append("\n");
sb.append(" totalBytes: ").append(toIndentedString(totalBytes)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}