com.g42cloud.sdk.er.v3.model.AvailableZone Maven / Gradle / Ivy
The newest version!
package com.g42cloud.sdk.er.v3.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* AvailableZone
*/
public class AvailableZone {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "code")
private String code;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "state")
private String state;
public AvailableZone withCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public AvailableZone withState(String state) {
this.state = state;
return this;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
AvailableZone that = (AvailableZone) obj;
return Objects.equals(this.code, that.code) && Objects.equals(this.state, that.state);
}
@Override
public int hashCode() {
return Objects.hash(code, state);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AvailableZone {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).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 ");
}
}