com.volcengine.vepfs.model.StatisticForDescribeFileSystemStatisticsOutput 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.CapacityInfoForDescribeFileSystemStatisticsOutput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* StatisticForDescribeFileSystemStatisticsOutput
*/
public class StatisticForDescribeFileSystemStatisticsOutput {
@SerializedName("AccountId")
private String accountId = null;
@SerializedName("CapacityInfo")
private CapacityInfoForDescribeFileSystemStatisticsOutput capacityInfo = null;
@SerializedName("FileSystemType")
private String fileSystemType = null;
@SerializedName("RegionId")
private String regionId = null;
@SerializedName("StoreType")
private String storeType = null;
@SerializedName("TotalCount")
private Integer totalCount = null;
public StatisticForDescribeFileSystemStatisticsOutput accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* Get accountId
* @return accountId
**/
@Schema(description = "")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public StatisticForDescribeFileSystemStatisticsOutput capacityInfo(CapacityInfoForDescribeFileSystemStatisticsOutput capacityInfo) {
this.capacityInfo = capacityInfo;
return this;
}
/**
* Get capacityInfo
* @return capacityInfo
**/
@Valid
@Schema(description = "")
public CapacityInfoForDescribeFileSystemStatisticsOutput getCapacityInfo() {
return capacityInfo;
}
public void setCapacityInfo(CapacityInfoForDescribeFileSystemStatisticsOutput capacityInfo) {
this.capacityInfo = capacityInfo;
}
public StatisticForDescribeFileSystemStatisticsOutput fileSystemType(String fileSystemType) {
this.fileSystemType = fileSystemType;
return this;
}
/**
* Get fileSystemType
* @return fileSystemType
**/
@Schema(description = "")
public String getFileSystemType() {
return fileSystemType;
}
public void setFileSystemType(String fileSystemType) {
this.fileSystemType = fileSystemType;
}
public StatisticForDescribeFileSystemStatisticsOutput regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* Get regionId
* @return regionId
**/
@Schema(description = "")
public String getRegionId() {
return regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public StatisticForDescribeFileSystemStatisticsOutput storeType(String storeType) {
this.storeType = storeType;
return this;
}
/**
* Get storeType
* @return storeType
**/
@Schema(description = "")
public String getStoreType() {
return storeType;
}
public void setStoreType(String storeType) {
this.storeType = storeType;
}
public StatisticForDescribeFileSystemStatisticsOutput totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* Get totalCount
* @return totalCount
**/
@Schema(description = "")
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StatisticForDescribeFileSystemStatisticsOutput statisticForDescribeFileSystemStatisticsOutput = (StatisticForDescribeFileSystemStatisticsOutput) o;
return Objects.equals(this.accountId, statisticForDescribeFileSystemStatisticsOutput.accountId) &&
Objects.equals(this.capacityInfo, statisticForDescribeFileSystemStatisticsOutput.capacityInfo) &&
Objects.equals(this.fileSystemType, statisticForDescribeFileSystemStatisticsOutput.fileSystemType) &&
Objects.equals(this.regionId, statisticForDescribeFileSystemStatisticsOutput.regionId) &&
Objects.equals(this.storeType, statisticForDescribeFileSystemStatisticsOutput.storeType) &&
Objects.equals(this.totalCount, statisticForDescribeFileSystemStatisticsOutput.totalCount);
}
@Override
public int hashCode() {
return Objects.hash(accountId, capacityInfo, fileSystemType, regionId, storeType, totalCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StatisticForDescribeFileSystemStatisticsOutput {\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" capacityInfo: ").append(toIndentedString(capacityInfo)).append("\n");
sb.append(" fileSystemType: ").append(toIndentedString(fileSystemType)).append("\n");
sb.append(" regionId: ").append(toIndentedString(regionId)).append("\n");
sb.append(" storeType: ").append(toIndentedString(storeType)).append("\n");
sb.append(" totalCount: ").append(toIndentedString(totalCount)).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