org.finra.herd.sdk.model.ExpectedPartitionValueKey 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;
/**
* ExpectedPartitionValueKey
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class ExpectedPartitionValueKey {
@JsonProperty("partitionKeyGroupName")
private String partitionKeyGroupName = null;
@JsonProperty("expectedPartitionValue")
private String expectedPartitionValue = null;
public ExpectedPartitionValueKey partitionKeyGroupName(String partitionKeyGroupName) {
this.partitionKeyGroupName = partitionKeyGroupName;
return this;
}
/**
* The name of the Partition Key Group associated with the Expected Partition Value
* @return partitionKeyGroupName
**/
@ApiModelProperty(required = true, value = "The name of the Partition Key Group associated with the Expected Partition Value")
public String getPartitionKeyGroupName() {
return partitionKeyGroupName;
}
public void setPartitionKeyGroupName(String partitionKeyGroupName) {
this.partitionKeyGroupName = partitionKeyGroupName;
}
public ExpectedPartitionValueKey expectedPartitionValue(String expectedPartitionValue) {
this.expectedPartitionValue = expectedPartitionValue;
return this;
}
/**
* The Expected Partition Value
* @return expectedPartitionValue
**/
@ApiModelProperty(required = true, value = "The Expected Partition Value")
public String getExpectedPartitionValue() {
return expectedPartitionValue;
}
public void setExpectedPartitionValue(String expectedPartitionValue) {
this.expectedPartitionValue = expectedPartitionValue;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ExpectedPartitionValueKey expectedPartitionValueKey = (ExpectedPartitionValueKey) o;
return Objects.equals(this.partitionKeyGroupName, expectedPartitionValueKey.partitionKeyGroupName) &&
Objects.equals(this.expectedPartitionValue, expectedPartitionValueKey.expectedPartitionValue);
}
@Override
public int hashCode() {
return Objects.hash(partitionKeyGroupName, expectedPartitionValue);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExpectedPartitionValueKey {\n");
sb.append(" partitionKeyGroupName: ").append(toIndentedString(partitionKeyGroupName)).append("\n");
sb.append(" expectedPartitionValue: ").append(toIndentedString(expectedPartitionValue)).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 ");
}
}