All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.iam20210801.model.ProjectRoleForListProjectIdentitiesOutput Maven / Gradle / Ivy

There is a newer version: 0.1.129
Show newest version
/*
 * iam20210801
 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
 *
 * OpenAPI spec version: common-version
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */

package com.volcengine.iam20210801.model;

import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.volcengine.iam20210801.model.PolicyForListProjectIdentitiesOutput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
 * ProjectRoleForListProjectIdentitiesOutput
 */



public class ProjectRoleForListProjectIdentitiesOutput {
  @SerializedName("Description")
  private String description = null;

  @SerializedName("DisplayName")
  private String displayName = null;

  @SerializedName("Policy")
  private List policy = null;

  @SerializedName("RoleName")
  private String roleName = null;

  @SerializedName("UpdateDate")
  private String updateDate = null;

  public ProjectRoleForListProjectIdentitiesOutput description(String description) {
    this.description = description;
    return this;
  }

   /**
   * Get description
   * @return description
  **/
  @Schema(description = "")
  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public ProjectRoleForListProjectIdentitiesOutput displayName(String displayName) {
    this.displayName = displayName;
    return this;
  }

   /**
   * Get displayName
   * @return displayName
  **/
  @Schema(description = "")
  public String getDisplayName() {
    return displayName;
  }

  public void setDisplayName(String displayName) {
    this.displayName = displayName;
  }

  public ProjectRoleForListProjectIdentitiesOutput policy(List policy) {
    this.policy = policy;
    return this;
  }

  public ProjectRoleForListProjectIdentitiesOutput addPolicyItem(PolicyForListProjectIdentitiesOutput policyItem) {
    if (this.policy == null) {
      this.policy = new ArrayList();
    }
    this.policy.add(policyItem);
    return this;
  }

   /**
   * Get policy
   * @return policy
  **/
  @Valid
  @Schema(description = "")
  public List getPolicy() {
    return policy;
  }

  public void setPolicy(List policy) {
    this.policy = policy;
  }

  public ProjectRoleForListProjectIdentitiesOutput roleName(String roleName) {
    this.roleName = roleName;
    return this;
  }

   /**
   * Get roleName
   * @return roleName
  **/
  @Schema(description = "")
  public String getRoleName() {
    return roleName;
  }

  public void setRoleName(String roleName) {
    this.roleName = roleName;
  }

  public ProjectRoleForListProjectIdentitiesOutput updateDate(String updateDate) {
    this.updateDate = updateDate;
    return this;
  }

   /**
   * Get updateDate
   * @return updateDate
  **/
  @Schema(description = "")
  public String getUpdateDate() {
    return updateDate;
  }

  public void setUpdateDate(String updateDate) {
    this.updateDate = updateDate;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ProjectRoleForListProjectIdentitiesOutput projectRoleForListProjectIdentitiesOutput = (ProjectRoleForListProjectIdentitiesOutput) o;
    return Objects.equals(this.description, projectRoleForListProjectIdentitiesOutput.description) &&
        Objects.equals(this.displayName, projectRoleForListProjectIdentitiesOutput.displayName) &&
        Objects.equals(this.policy, projectRoleForListProjectIdentitiesOutput.policy) &&
        Objects.equals(this.roleName, projectRoleForListProjectIdentitiesOutput.roleName) &&
        Objects.equals(this.updateDate, projectRoleForListProjectIdentitiesOutput.updateDate);
  }

  @Override
  public int hashCode() {
    return Objects.hash(description, displayName, policy, roleName, updateDate);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ProjectRoleForListProjectIdentitiesOutput {\n");
    
    sb.append("    description: ").append(toIndentedString(description)).append("\n");
    sb.append("    displayName: ").append(toIndentedString(displayName)).append("\n");
    sb.append("    policy: ").append(toIndentedString(policy)).append("\n");
    sb.append("    roleName: ").append(toIndentedString(roleName)).append("\n");
    sb.append("    updateDate: ").append(toIndentedString(updateDate)).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    ");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy