com.seeq.model.DoubleConfigurationFieldOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 65.1.3-v202408082312
*
*
* 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;
/**
* DoubleConfigurationFieldOutputV1
*/
public class DoubleConfigurationFieldOutputV1 extends ConfigurationFieldOutputV1 {
@JsonProperty("maxValue")
private Double maxValue = null;
@JsonProperty("minValue")
private Double minValue = null;
public DoubleConfigurationFieldOutputV1 maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* The maximum double allowed for the value field
* @return maxValue
**/
@Schema(description = "The maximum double allowed for the value field")
public Double getMaxValue() {
return maxValue;
}
public void setMaxValue(Double maxValue) {
this.maxValue = maxValue;
}
public DoubleConfigurationFieldOutputV1 minValue(Double minValue) {
this.minValue = minValue;
return this;
}
/**
* The minimum double allowed for the value field
* @return minValue
**/
@Schema(description = "The minimum double allowed for the value field")
public Double getMinValue() {
return minValue;
}
public void setMinValue(Double 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;
}
DoubleConfigurationFieldOutputV1 doubleConfigurationFieldOutputV1 = (DoubleConfigurationFieldOutputV1) o;
return Objects.equals(this.maxValue, doubleConfigurationFieldOutputV1.maxValue) &&
Objects.equals(this.minValue, doubleConfigurationFieldOutputV1.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 DoubleConfigurationFieldOutputV1 {\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 ");
}
}