org.finra.herd.sdk.model.PartitionValueRange 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;
/**
* PartitionValueRange
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class PartitionValueRange {
@JsonProperty("startPartitionValue")
private String startPartitionValue = null;
@JsonProperty("endPartitionValue")
private String endPartitionValue = null;
public PartitionValueRange startPartitionValue(String startPartitionValue) {
this.startPartitionValue = startPartitionValue;
return this;
}
/**
* The start partition value for the partition value range. Required when partitionValueRange is present
* @return startPartitionValue
**/
@ApiModelProperty(required = true, value = "The start partition value for the partition value range. Required when partitionValueRange is present")
public String getStartPartitionValue() {
return startPartitionValue;
}
public void setStartPartitionValue(String startPartitionValue) {
this.startPartitionValue = startPartitionValue;
}
public PartitionValueRange endPartitionValue(String endPartitionValue) {
this.endPartitionValue = endPartitionValue;
return this;
}
/**
* The end partition value for the partition value range. Required when partitionValueRange is present
* @return endPartitionValue
**/
@ApiModelProperty(required = true, value = "The end partition value for the partition value range. Required when partitionValueRange is present")
public String getEndPartitionValue() {
return endPartitionValue;
}
public void setEndPartitionValue(String endPartitionValue) {
this.endPartitionValue = endPartitionValue;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PartitionValueRange partitionValueRange = (PartitionValueRange) o;
return Objects.equals(this.startPartitionValue, partitionValueRange.startPartitionValue) &&
Objects.equals(this.endPartitionValue, partitionValueRange.endPartitionValue);
}
@Override
public int hashCode() {
return Objects.hash(startPartitionValue, endPartitionValue);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PartitionValueRange {\n");
sb.append(" startPartitionValue: ").append(toIndentedString(startPartitionValue)).append("\n");
sb.append(" endPartitionValue: ").append(toIndentedString(endPartitionValue)).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 ");
}
}