com.seeq.model.LongConfigurationFieldOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 64.3.0-v202405012032
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.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 com.seeq.model.ConfigurationFieldOutputV1;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* LongConfigurationFieldOutputV1
*/
public class LongConfigurationFieldOutputV1 extends ConfigurationFieldOutputV1 {
@JsonProperty("maxValue")
private Long maxValue = null;
@JsonProperty("minValue")
private Long minValue = null;
public LongConfigurationFieldOutputV1 maxValue(Long maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* The maximum 64-bit integer allowed for the value field
* @return maxValue
**/
@Schema(description = "The maximum 64-bit integer allowed for the value field")
public Long getMaxValue() {
return maxValue;
}
public void setMaxValue(Long maxValue) {
this.maxValue = maxValue;
}
public LongConfigurationFieldOutputV1 minValue(Long minValue) {
this.minValue = minValue;
return this;
}
/**
* The minimum 64-bit integer allowed for the value field
* @return minValue
**/
@Schema(description = "The minimum 64-bit integer allowed for the value field")
public Long getMinValue() {
return minValue;
}
public void setMinValue(Long minValue) {
this.minValue = minValue;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LongConfigurationFieldOutputV1 longConfigurationFieldOutputV1 = (LongConfigurationFieldOutputV1) o;
return Objects.equals(this.maxValue, longConfigurationFieldOutputV1.maxValue) &&
Objects.equals(this.minValue, longConfigurationFieldOutputV1.minValue) &&
super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(maxValue, minValue, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LongConfigurationFieldOutputV1 {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" maxValue: ").append(toIndentedString(maxValue)).append("\n");
sb.append(" minValue: ").append(toIndentedString(minValue)).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 ");
}
}