com.volcengine.model.live.v20230101.DescribeLiveStreamInfoByPageResResultStreamInfoListItem 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;
/**
* 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;
/**
* 在线流的来源类型,取值及含义如下所示。
*
*
*
* - `push`:直推流;
*
* - `relay`:回源流。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SourceType")
private String sourceType;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy