dev.bf2.ffm.ams.client.models.ClusterResourceTotal Maven / Gradle / Ivy
/*
* Account Management Service API
* Manage user subscriptions and clusters
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package dev.bf2.ffm.ams.client.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* ClusterResourceTotal
*/
@JsonPropertyOrder({
ClusterResourceTotal.JSON_PROPERTY_UNIT,
ClusterResourceTotal.JSON_PROPERTY_VALUE
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ClusterResourceTotal {
public static final String JSON_PROPERTY_UNIT = "unit";
private String unit;
public static final String JSON_PROPERTY_VALUE = "value";
private Double value = null;
public ClusterResourceTotal() {
}
public ClusterResourceTotal unit(String unit) {
this.unit = unit;
return this;
}
/**
* Get unit
* @return unit
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_UNIT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getUnit() {
return unit;
}
@JsonProperty(JSON_PROPERTY_UNIT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUnit(String unit) {
this.unit = unit;
}
public ClusterResourceTotal value(Double value) {
this.value = value;
return this;
}
/**
* Get value
* @return value
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Double getValue() {
return value;
}
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setValue(Double value) {
this.value = value;
}
/**
* Return true if this ClusterResource_total object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ClusterResourceTotal clusterResourceTotal = (ClusterResourceTotal) o;
return Objects.equals(this.unit, clusterResourceTotal.unit) &&
Objects.equals(this.value, clusterResourceTotal.value);
}
@Override
public int hashCode() {
return Objects.hash(unit, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ClusterResourceTotal {\n");
sb.append(" unit: ").append(toIndentedString(unit)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}