com.volcengine.vepfs.model.CreateFileSystemResponse Maven / Gradle / Ivy
/*
* vepfs
* 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.vepfs.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.vepfs.model.TagForCreateFileSystemOutput;
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;
/**
* CreateFileSystemResponse
*/
public class CreateFileSystemResponse {
@SerializedName("FileSystemId")
private String fileSystemId = null;
@SerializedName("OrderNO")
private String orderNO = null;
@SerializedName("Tags")
private List tags = null;
public CreateFileSystemResponse fileSystemId(String fileSystemId) {
this.fileSystemId = fileSystemId;
return this;
}
/**
* Get fileSystemId
* @return fileSystemId
**/
@Schema(description = "")
public String getFileSystemId() {
return fileSystemId;
}
public void setFileSystemId(String fileSystemId) {
this.fileSystemId = fileSystemId;
}
public CreateFileSystemResponse orderNO(String orderNO) {
this.orderNO = orderNO;
return this;
}
/**
* Get orderNO
* @return orderNO
**/
@Schema(description = "")
public String getOrderNO() {
return orderNO;
}
public void setOrderNO(String orderNO) {
this.orderNO = orderNO;
}
public CreateFileSystemResponse tags(List tags) {
this.tags = tags;
return this;
}
public CreateFileSystemResponse addTagsItem(TagForCreateFileSystemOutput tagsItem) {
if (this.tags == null) {
this.tags = new ArrayList();
}
this.tags.add(tagsItem);
return this;
}
/**
* Get tags
* @return tags
**/
@Valid
@Schema(description = "")
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateFileSystemResponse createFileSystemResponse = (CreateFileSystemResponse) o;
return Objects.equals(this.fileSystemId, createFileSystemResponse.fileSystemId) &&
Objects.equals(this.orderNO, createFileSystemResponse.orderNO) &&
Objects.equals(this.tags, createFileSystemResponse.tags);
}
@Override
public int hashCode() {
return Objects.hash(fileSystemId, orderNO, tags);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateFileSystemResponse {\n");
sb.append(" fileSystemId: ").append(toIndentedString(fileSystemId)).append("\n");
sb.append(" orderNO: ").append(toIndentedString(orderNO)).append("\n");
sb.append(" tags: ").append(toIndentedString(tags)).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