com.byteplus.model.live.v20230101.DescribeLiveStorageSpaceDataBody Maven / Gradle / Ivy
package com.byteplus.model.live.v20230101;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* DescribeLiveStorageSpaceDataBody
*/
@lombok.Data
public final class DescribeLiveStorageSpaceDataBody {
/**
* 时间粒度,单位为 s,支持配置为 86400,单次查询时间跨度为 93 天,历史查询时间范围为 366 天。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Aggregation")
private Integer aggregation;
/**
* 结束时间,RFC3339 格式的 UTC 时间,精度为 s。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndTime")
private String endTime;
/**
* 开始时间,RFC3339 格式的 UTC 时间,精度为 s。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private String startTime;
/**
* 域名空间列表,缺省情况表示查询该用户的所有域名空间。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Buckets")
private List buckets;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}