org.finra.herd.sdk.model.NamespaceIamRoleAuthorizations Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.finra.herd.sdk.model.NamespaceIamRoleAuthorization;
/**
* NamespaceIamRoleAuthorizations
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class NamespaceIamRoleAuthorizations {
@JsonProperty("namespaceIamRoleAuthorizations")
private List namespaceIamRoleAuthorizations = null;
public NamespaceIamRoleAuthorizations namespaceIamRoleAuthorizations(List namespaceIamRoleAuthorizations) {
this.namespaceIamRoleAuthorizations = namespaceIamRoleAuthorizations;
return this;
}
public NamespaceIamRoleAuthorizations addNamespaceIamRoleAuthorizationsItem(NamespaceIamRoleAuthorization namespaceIamRoleAuthorizationsItem) {
if (this.namespaceIamRoleAuthorizations == null) {
this.namespaceIamRoleAuthorizations = new ArrayList();
}
this.namespaceIamRoleAuthorizations.add(namespaceIamRoleAuthorizationsItem);
return this;
}
/**
* Get namespaceIamRoleAuthorizations
* @return namespaceIamRoleAuthorizations
**/
@ApiModelProperty(value = "")
public List getNamespaceIamRoleAuthorizations() {
return namespaceIamRoleAuthorizations;
}
public void setNamespaceIamRoleAuthorizations(List namespaceIamRoleAuthorizations) {
this.namespaceIamRoleAuthorizations = namespaceIamRoleAuthorizations;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NamespaceIamRoleAuthorizations namespaceIamRoleAuthorizations = (NamespaceIamRoleAuthorizations) o;
return Objects.equals(this.namespaceIamRoleAuthorizations, namespaceIamRoleAuthorizations.namespaceIamRoleAuthorizations);
}
@Override
public int hashCode() {
return Objects.hash(namespaceIamRoleAuthorizations);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NamespaceIamRoleAuthorizations {\n");
sb.append(" namespaceIamRoleAuthorizations: ").append(toIndentedString(namespaceIamRoleAuthorizations)).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 ");
}
}