org.finra.herd.sdk.model.SearchIndexValidationCreateRequest 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.SearchIndexKey;
/**
* SearchIndexValidationCreateRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class SearchIndexValidationCreateRequest {
@JsonProperty("searchIndexKey")
private SearchIndexKey searchIndexKey = null;
@JsonProperty("performFullSearchIndexValidation")
private Boolean performFullSearchIndexValidation = null;
public SearchIndexValidationCreateRequest searchIndexKey(SearchIndexKey searchIndexKey) {
this.searchIndexKey = searchIndexKey;
return this;
}
/**
* Get searchIndexKey
* @return searchIndexKey
**/
@ApiModelProperty(required = true, value = "")
public SearchIndexKey getSearchIndexKey() {
return searchIndexKey;
}
public void setSearchIndexKey(SearchIndexKey searchIndexKey) {
this.searchIndexKey = searchIndexKey;
}
public SearchIndexValidationCreateRequest performFullSearchIndexValidation(Boolean performFullSearchIndexValidation) {
this.performFullSearchIndexValidation = performFullSearchIndexValidation;
return this;
}
/**
* An optional boolean flag that specifies if full-validation should be run on the index
* @return performFullSearchIndexValidation
**/
@ApiModelProperty(value = "An optional boolean flag that specifies if full-validation should be run on the index")
public Boolean getPerformFullSearchIndexValidation() {
return performFullSearchIndexValidation;
}
public void setPerformFullSearchIndexValidation(Boolean performFullSearchIndexValidation) {
this.performFullSearchIndexValidation = performFullSearchIndexValidation;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SearchIndexValidationCreateRequest searchIndexValidationCreateRequest = (SearchIndexValidationCreateRequest) o;
return Objects.equals(this.searchIndexKey, searchIndexValidationCreateRequest.searchIndexKey) &&
Objects.equals(this.performFullSearchIndexValidation, searchIndexValidationCreateRequest.performFullSearchIndexValidation);
}
@Override
public int hashCode() {
return Objects.hash(searchIndexKey, performFullSearchIndexValidation);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SearchIndexValidationCreateRequest {\n");
sb.append(" searchIndexKey: ").append(toIndentedString(searchIndexKey)).append("\n");
sb.append(" performFullSearchIndexValidation: ").append(toIndentedString(performFullSearchIndexValidation)).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 ");
}
}