org.finra.herd.sdk.model.DescriptiveBusinessObjectFormat 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;
/**
* DescriptiveBusinessObjectFormat
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class DescriptiveBusinessObjectFormat {
@JsonProperty("businessObjectFormatUsage")
private String businessObjectFormatUsage = null;
@JsonProperty("businessObjectFormatFileType")
private String businessObjectFormatFileType = null;
@JsonProperty("businessObjectFormatVersion")
private Integer businessObjectFormatVersion = null;
public DescriptiveBusinessObjectFormat businessObjectFormatUsage(String businessObjectFormatUsage) {
this.businessObjectFormatUsage = businessObjectFormatUsage;
return this;
}
/**
* The Usage of this Business Object Format - a string describing how this format is used. Often used as a label for the Business Object Format
* @return businessObjectFormatUsage
**/
@ApiModelProperty(required = true, value = "The Usage of this Business Object Format - a string describing how this format is used. Often used as a label for the Business Object Format ")
public String getBusinessObjectFormatUsage() {
return businessObjectFormatUsage;
}
public void setBusinessObjectFormatUsage(String businessObjectFormatUsage) {
this.businessObjectFormatUsage = businessObjectFormatUsage;
}
public DescriptiveBusinessObjectFormat businessObjectFormatFileType(String businessObjectFormatFileType) {
this.businessObjectFormatFileType = businessObjectFormatFileType;
return this;
}
/**
* The File type for this Business Object Format
* @return businessObjectFormatFileType
**/
@ApiModelProperty(required = true, value = "The File type for this Business Object Format")
public String getBusinessObjectFormatFileType() {
return businessObjectFormatFileType;
}
public void setBusinessObjectFormatFileType(String businessObjectFormatFileType) {
this.businessObjectFormatFileType = businessObjectFormatFileType;
}
public DescriptiveBusinessObjectFormat businessObjectFormatVersion(Integer businessObjectFormatVersion) {
this.businessObjectFormatVersion = businessObjectFormatVersion;
return this;
}
/**
* The numeric version of a Business Object Format. Each time a format is registered, the new version will be the previous version + 1
* @return businessObjectFormatVersion
**/
@ApiModelProperty(value = "The numeric version of a Business Object Format. Each time a format is registered, the new version will be the previous version + 1 ")
public Integer getBusinessObjectFormatVersion() {
return businessObjectFormatVersion;
}
public void setBusinessObjectFormatVersion(Integer businessObjectFormatVersion) {
this.businessObjectFormatVersion = businessObjectFormatVersion;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DescriptiveBusinessObjectFormat descriptiveBusinessObjectFormat = (DescriptiveBusinessObjectFormat) o;
return Objects.equals(this.businessObjectFormatUsage, descriptiveBusinessObjectFormat.businessObjectFormatUsage) &&
Objects.equals(this.businessObjectFormatFileType, descriptiveBusinessObjectFormat.businessObjectFormatFileType) &&
Objects.equals(this.businessObjectFormatVersion, descriptiveBusinessObjectFormat.businessObjectFormatVersion);
}
@Override
public int hashCode() {
return Objects.hash(businessObjectFormatUsage, businessObjectFormatFileType, businessObjectFormatVersion);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DescriptiveBusinessObjectFormat {\n");
sb.append(" businessObjectFormatUsage: ").append(toIndentedString(businessObjectFormatUsage)).append("\n");
sb.append(" businessObjectFormatFileType: ").append(toIndentedString(businessObjectFormatFileType)).append("\n");
sb.append(" businessObjectFormatVersion: ").append(toIndentedString(businessObjectFormatVersion)).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 ");
}
}