com.volcengine.model.live.v20230101.DescribeLivePushStreamInfoDataResResult 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;
/**
* DescribeLivePushStreamInfoDataResResult
*/
@lombok.Data
public final class DescribeLivePushStreamInfoDataResResult {
/**
* 域名列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DomainList")
private List domainList;
/**
* 应用名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "App")
private String app;
/**
* 流名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Stream")
private String stream;
/**
* 查询推流的开始时间,RFC3339 格式的时间字符串,精度为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private String startTime;
/**
* 查询推流的结束时间,RFC3339 格式的时间字符串,精度为秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndTime")
private String endTime;
/**
* 在查询时间范围内进行推流并已断开的流信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PushStreamInfoDataList")
private List pushStreamInfoDataList;
/**
* 查询结果的分页信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Pagination")
private DescribeLivePushStreamInfoDataResResultPagination pagination;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy