dev.bf2.ffm.ams.client.models.ClusterUpgrade 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 java.time.OffsetDateTime;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* ClusterUpgrade
*/
@JsonPropertyOrder({
ClusterUpgrade.JSON_PROPERTY_AVAILABLE,
ClusterUpgrade.JSON_PROPERTY_STATE,
ClusterUpgrade.JSON_PROPERTY_UPDATED_TIMESTAMP,
ClusterUpgrade.JSON_PROPERTY_VERSION
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ClusterUpgrade {
public static final String JSON_PROPERTY_AVAILABLE = "available";
private Boolean available;
public static final String JSON_PROPERTY_STATE = "state";
private String state;
public static final String JSON_PROPERTY_UPDATED_TIMESTAMP = "updated_timestamp";
private OffsetDateTime updatedTimestamp;
public static final String JSON_PROPERTY_VERSION = "version";
private String version;
public ClusterUpgrade() {
}
public ClusterUpgrade available(Boolean available) {
this.available = available;
return this;
}
/**
* Get available
* @return available
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_AVAILABLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getAvailable() {
return available;
}
@JsonProperty(JSON_PROPERTY_AVAILABLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAvailable(Boolean available) {
this.available = available;
}
public ClusterUpgrade state(String state) {
this.state = state;
return this;
}
/**
* Get state
* @return state
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getState() {
return state;
}
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setState(String state) {
this.state = state;
}
public ClusterUpgrade updatedTimestamp(OffsetDateTime updatedTimestamp) {
this.updatedTimestamp = updatedTimestamp;
return this;
}
/**
* Get updatedTimestamp
* @return updatedTimestamp
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_UPDATED_TIMESTAMP)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public OffsetDateTime getUpdatedTimestamp() {
return updatedTimestamp;
}
@JsonProperty(JSON_PROPERTY_UPDATED_TIMESTAMP)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUpdatedTimestamp(OffsetDateTime updatedTimestamp) {
this.updatedTimestamp = updatedTimestamp;
}
public ClusterUpgrade version(String version) {
this.version = version;
return this;
}
/**
* Get version
* @return version
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getVersion() {
return version;
}
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setVersion(String version) {
this.version = version;
}
/**
* Return true if this ClusterUpgrade object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ClusterUpgrade clusterUpgrade = (ClusterUpgrade) o;
return Objects.equals(this.available, clusterUpgrade.available) &&
Objects.equals(this.state, clusterUpgrade.state) &&
Objects.equals(this.updatedTimestamp, clusterUpgrade.updatedTimestamp) &&
Objects.equals(this.version, clusterUpgrade.version);
}
@Override
public int hashCode() {
return Objects.hash(available, state, updatedTimestamp, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ClusterUpgrade {\n");
sb.append(" available: ").append(toIndentedString(available)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).append("\n");
sb.append(" updatedTimestamp: ").append(toIndentedString(updatedTimestamp)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).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 ");
}
}