dev.bf2.ffm.ams.client.models.OrganizationPatchRequest 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;
/**
* OrganizationPatchRequest
*/
@JsonPropertyOrder({
OrganizationPatchRequest.JSON_PROPERTY_EBS_ACCOUNT_ID,
OrganizationPatchRequest.JSON_PROPERTY_EXTERNAL_ID,
OrganizationPatchRequest.JSON_PROPERTY_NAME
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class OrganizationPatchRequest {
public static final String JSON_PROPERTY_EBS_ACCOUNT_ID = "ebs_account_id";
private String ebsAccountId;
public static final String JSON_PROPERTY_EXTERNAL_ID = "external_id";
private String externalId;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public OrganizationPatchRequest() {
}
public OrganizationPatchRequest ebsAccountId(String ebsAccountId) {
this.ebsAccountId = ebsAccountId;
return this;
}
/**
* Get ebsAccountId
* @return ebsAccountId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_EBS_ACCOUNT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getEbsAccountId() {
return ebsAccountId;
}
@JsonProperty(JSON_PROPERTY_EBS_ACCOUNT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setEbsAccountId(String ebsAccountId) {
this.ebsAccountId = ebsAccountId;
}
public OrganizationPatchRequest externalId(String externalId) {
this.externalId = externalId;
return this;
}
/**
* Get externalId
* @return externalId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_EXTERNAL_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getExternalId() {
return externalId;
}
@JsonProperty(JSON_PROPERTY_EXTERNAL_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setExternalId(String externalId) {
this.externalId = externalId;
}
public OrganizationPatchRequest name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setName(String name) {
this.name = name;
}
/**
* Return true if this OrganizationPatchRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OrganizationPatchRequest organizationPatchRequest = (OrganizationPatchRequest) o;
return Objects.equals(this.ebsAccountId, organizationPatchRequest.ebsAccountId) &&
Objects.equals(this.externalId, organizationPatchRequest.externalId) &&
Objects.equals(this.name, organizationPatchRequest.name);
}
@Override
public int hashCode() {
return Objects.hash(ebsAccountId, externalId, name);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OrganizationPatchRequest {\n");
sb.append(" ebsAccountId: ").append(toIndentedString(ebsAccountId)).append("\n");
sb.append(" externalId: ").append(toIndentedString(externalId)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).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 ");
}
}