org.finra.herd.sdk.model.IndexSearchResultKey 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.finra.herd.sdk.model.BusinessObjectDefinitionKey;
import org.finra.herd.sdk.model.TagKey;
/**
* IndexSearchResultKey
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class IndexSearchResultKey {
@JsonProperty("tagKey")
private TagKey tagKey = null;
@JsonProperty("businessObjectDefinitionKey")
private BusinessObjectDefinitionKey businessObjectDefinitionKey = null;
public IndexSearchResultKey tagKey(TagKey tagKey) {
this.tagKey = tagKey;
return this;
}
/**
* Get tagKey
* @return tagKey
**/
@ApiModelProperty(value = "")
public TagKey getTagKey() {
return tagKey;
}
public void setTagKey(TagKey tagKey) {
this.tagKey = tagKey;
}
public IndexSearchResultKey businessObjectDefinitionKey(BusinessObjectDefinitionKey businessObjectDefinitionKey) {
this.businessObjectDefinitionKey = businessObjectDefinitionKey;
return this;
}
/**
* Get businessObjectDefinitionKey
* @return businessObjectDefinitionKey
**/
@ApiModelProperty(value = "")
public BusinessObjectDefinitionKey getBusinessObjectDefinitionKey() {
return businessObjectDefinitionKey;
}
public void setBusinessObjectDefinitionKey(BusinessObjectDefinitionKey businessObjectDefinitionKey) {
this.businessObjectDefinitionKey = businessObjectDefinitionKey;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IndexSearchResultKey indexSearchResultKey = (IndexSearchResultKey) o;
return Objects.equals(this.tagKey, indexSearchResultKey.tagKey) &&
Objects.equals(this.businessObjectDefinitionKey, indexSearchResultKey.businessObjectDefinitionKey);
}
@Override
public int hashCode() {
return Objects.hash(tagKey, businessObjectDefinitionKey);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IndexSearchResultKey {\n");
sb.append(" tagKey: ").append(toIndentedString(tagKey)).append("\n");
sb.append(" businessObjectDefinitionKey: ").append(toIndentedString(businessObjectDefinitionKey)).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 ");
}
}