com.volcengine.iam20210801.model.CreateProjectRequest Maven / Gradle / Ivy
/*
* 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 io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* CreateProjectRequest
*/
public class CreateProjectRequest {
@SerializedName("Description")
private String description = null;
@SerializedName("DisplayName")
private String displayName = null;
@SerializedName("ParentProjectName")
private String parentProjectName = null;
@SerializedName("ProjectName")
private String projectName = null;
public CreateProjectRequest 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 CreateProjectRequest 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 CreateProjectRequest parentProjectName(String parentProjectName) {
this.parentProjectName = parentProjectName;
return this;
}
/**
* Get parentProjectName
* @return parentProjectName
**/
@Schema(description = "")
public String getParentProjectName() {
return parentProjectName;
}
public void setParentProjectName(String parentProjectName) {
this.parentProjectName = parentProjectName;
}
public CreateProjectRequest projectName(String projectName) {
this.projectName = projectName;
return this;
}
/**
* Get projectName
* @return projectName
**/
@NotNull
@Schema(required = true, description = "")
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateProjectRequest createProjectRequest = (CreateProjectRequest) o;
return Objects.equals(this.description, createProjectRequest.description) &&
Objects.equals(this.displayName, createProjectRequest.displayName) &&
Objects.equals(this.parentProjectName, createProjectRequest.parentProjectName) &&
Objects.equals(this.projectName, createProjectRequest.projectName);
}
@Override
public int hashCode() {
return Objects.hash(description, displayName, parentProjectName, projectName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateProjectRequest {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" parentProjectName: ").append(toIndentedString(parentProjectName)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).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 ");
}
}