org.finra.herd.sdk.model.BusinessObjectDefinitionSampleDataFileKey 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;
/**
* BusinessObjectDefinitionSampleDataFileKey
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class BusinessObjectDefinitionSampleDataFileKey {
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("businessObjectDefinitionName")
private String businessObjectDefinitionName = null;
@JsonProperty("directoryPath")
private String directoryPath = null;
@JsonProperty("fileName")
private String fileName = null;
public BusinessObjectDefinitionSampleDataFileKey namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* The namespace of the business object definition
* @return namespace
**/
@ApiModelProperty(required = true, value = "The namespace of the business object definition ")
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public BusinessObjectDefinitionSampleDataFileKey businessObjectDefinitionName(String businessObjectDefinitionName) {
this.businessObjectDefinitionName = businessObjectDefinitionName;
return this;
}
/**
* The business object definition name
* @return businessObjectDefinitionName
**/
@ApiModelProperty(required = true, value = "The business object definition name ")
public String getBusinessObjectDefinitionName() {
return businessObjectDefinitionName;
}
public void setBusinessObjectDefinitionName(String businessObjectDefinitionName) {
this.businessObjectDefinitionName = businessObjectDefinitionName;
}
public BusinessObjectDefinitionSampleDataFileKey directoryPath(String directoryPath) {
this.directoryPath = directoryPath;
return this;
}
/**
* The directory path of the sample data file. Note that directory path will contain a trailing \"directory\" separator, thus the caller needs to concatenate the directory path and the file name as is in order to construct a fully qualified path for the sample data file
* @return directoryPath
**/
@ApiModelProperty(required = true, value = "The directory path of the sample data file. Note that directory path will contain a trailing \"directory\" separator, thus the caller needs to concatenate the directory path and the file name as is in order to construct a fully qualified path for the sample data file ")
public String getDirectoryPath() {
return directoryPath;
}
public void setDirectoryPath(String directoryPath) {
this.directoryPath = directoryPath;
}
public BusinessObjectDefinitionSampleDataFileKey fileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* The name of the sample data file
* @return fileName
**/
@ApiModelProperty(required = true, value = "The name of the sample data file ")
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BusinessObjectDefinitionSampleDataFileKey businessObjectDefinitionSampleDataFileKey = (BusinessObjectDefinitionSampleDataFileKey) o;
return Objects.equals(this.namespace, businessObjectDefinitionSampleDataFileKey.namespace) &&
Objects.equals(this.businessObjectDefinitionName, businessObjectDefinitionSampleDataFileKey.businessObjectDefinitionName) &&
Objects.equals(this.directoryPath, businessObjectDefinitionSampleDataFileKey.directoryPath) &&
Objects.equals(this.fileName, businessObjectDefinitionSampleDataFileKey.fileName);
}
@Override
public int hashCode() {
return Objects.hash(namespace, businessObjectDefinitionName, directoryPath, fileName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BusinessObjectDefinitionSampleDataFileKey {\n");
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
sb.append(" businessObjectDefinitionName: ").append(toIndentedString(businessObjectDefinitionName)).append("\n");
sb.append(" directoryPath: ").append(toIndentedString(directoryPath)).append("\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).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 ");
}
}