com.byteplus.model.live.v20230101.DescribeLiveStreamInfoByPageResResultStreamInfoListItem Maven / Gradle / Ivy
package com.byteplus.model.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* DescribeLiveStreamInfoByPageResResultStreamInfoListItem
*/
@lombok.Data
public final class DescribeLiveStreamInfoByPageResResultStreamInfoListItem {
/**
* 在线流的 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ID")
private Long iD;
/**
* 在线流使用的域名所属的域名空间。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Vhost")
private String vhost;
/**
* 在线流使用的域名。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Domain")
private String domain;
/**
* 在线流使用的应用名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "App")
private String app;
/**
* 在线流使用的流名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Stream")
private String stream;
/**
* 在线流的开始时间,RFC3339 格式的 UTC 时间戳,精度为毫秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SessionStartTime")
private String sessionStartTime;
/**
* 在线人数
*/
@com.alibaba.fastjson.annotation.JSONField(name = "OnlineUser")
private String onlineUser;
/**
* 带宽
*/
@com.alibaba.fastjson.annotation.JSONField(name = "BandWidth")
private String bandWidth;
/**
* 码率
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Bitrate")
private String bitrate;
/**
* 帧率
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Framerate")
private String framerate;
/**
* 预览地址
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PreviewURL")
private String previewURL;
/**
* 在线流的来源类型,取值及含义如下所示。
*
*
*
* - `push`:直推流;
*
* - `relay`:回源流。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SourceType")
private String sourceType;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}