com.volcengine.model.live.v20230101.DescribeLivePushStreamInfoDataResResultPushStreamInfoDataListItem 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;
/**
* DescribeLivePushStreamInfoDataResResultPushStreamInfoDataListItem
*/
@lombok.Data
public final class DescribeLivePushStreamInfoDataResResultPushStreamInfoDataListItem {
/**
* 应用名称。
*/
@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 = "Duration")
private Integer duration;
/**
* 推流客户端的 IP 地址,没有 IP 信息时返回为空。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "IP")
private String iP;
/**
* 推流断开原因,常见的断流原因参见[回调内容说明-断流错误原因](https://www.volcengine.com/docs/6469/1126932#断流错误原因)。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StreamBreakReason")
private String streamBreakReason;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy