com.volcengine.model.live.v20230101.DescribeLiveStreamCountDataResResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.v20230101;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* DescribeLiveStreamCountDataResResult
*/
@lombok.Data
public final class DescribeLiveStreamCountDataResResult {
/**
* 域名列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DomainList")
private List domainList;
/**
* 查询的开始时间,RFC3339 格式的时间戳,精度为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private String startTime;
/**
* 查询的结束时间,RFC3339 格式的时间戳,精度为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndTime")
private String endTime;
/**
* 数据聚合的时间粒度,单位为秒。
*
* - `60`:1 分钟;
*
* - `300`:5 分钟;
*
* - `3600`:1 小时;
*
* - `86400`:1 天。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Aggregation")
private Integer aggregation;
/**
* 数据拆分的维度,当前接口仅支持按 `Domain` 即域名维度进行数据拆分。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DetailField")
private List detailField;
/**
* 流类型,流类型说明如下。
*
* - `push`:拉流;
*
* - `relay-source`:回源流;
*
* - `transcode`:转码流。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StreamType")
private List streamType;
/**
* 当前查询条件下流数最大值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PeakCount")
private Integer peakCount;
/**
* 所有时间粒度的数据。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TotalStreamDataList")
private List totalStreamDataList;
/**
* 按维度拆分后的数据。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StreamDetailDataList")
private List streamDetailDataList;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy