com.volcengine.model.live.DescribeLivePullToPushDataResResultPullToPushDetailDataListItem 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;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* DescribeLivePullToPushDataResResultPullToPushDetailDataListItem
*/
@lombok.Data
public final class DescribeLivePullToPushDataResResultPullToPushDetailDataListItem {
/**
* 域名。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Domain")
private String domain;
/**
* 查询范围内拉流转推总时长,单位分钟,保留小数点后 2 位。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TotalDuration")
private Float totalDuration;
/**
* 各时间片详细数据。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PullToPushDataList")
private List pullToPushDataList;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy