com.aliyun.dingtalklive_1_0.models.QueryLiveInfoResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class QueryLiveInfoResponseBody extends TeaModel {
@NameInMap("result")
public QueryLiveInfoResponseBodyResult result;
public static QueryLiveInfoResponseBody build(java.util.Map map) throws Exception {
QueryLiveInfoResponseBody self = new QueryLiveInfoResponseBody();
return TeaModel.build(map, self);
}
public QueryLiveInfoResponseBody setResult(QueryLiveInfoResponseBodyResult result) {
this.result = result;
return this;
}
public QueryLiveInfoResponseBodyResult getResult() {
return this.result;
}
public static class QueryLiveInfoResponseBodyResultLiveInfo extends TeaModel {
/**
* example:
* https://gw.alicdn.com/tfs/TB1thlYyAT2gK0jSZPcXXcKkpXa-1125-633.png
*/
@NameInMap("coverUrl")
public String coverUrl;
/**
* example:
* 18450
*/
@NameInMap("duration")
public Long duration;
/**
* example:
* 1659653648000
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 测试直播简介
*/
@NameInMap("introduction")
public String introduction;
/**
* example:
* 1a353547-040d-4095-bb93-404bc5d47920
*/
@NameInMap("liveId")
public String liveId;
/**
* example:
*
*/
@NameInMap("livePlayUrl")
public String livePlayUrl;
/**
* example:
* 3
*/
@NameInMap("liveStatus")
public Integer liveStatus;
/**
* example:
* 18430
*/
@NameInMap("playbackDuration")
public Long playbackDuration;
/**
* example:
* 1659613648000
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 2
*/
@NameInMap("subscribeCount")
public Integer subscribeCount;
/**
* example:
* 测试直播
*/
@NameInMap("title")
public String title;
/**
* example:
* DC7wZGOSueEEIGOf3WKwWgiEiE
*/
@NameInMap("unionId")
public String unionId;
/**
* example:
* 3
*/
@NameInMap("uv")
public Integer uv;
public static QueryLiveInfoResponseBodyResultLiveInfo build(java.util.Map map) throws Exception {
QueryLiveInfoResponseBodyResultLiveInfo self = new QueryLiveInfoResponseBodyResultLiveInfo();
return TeaModel.build(map, self);
}
public QueryLiveInfoResponseBodyResultLiveInfo setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public QueryLiveInfoResponseBodyResultLiveInfo setDuration(Long duration) {
this.duration = duration;
return this;
}
public Long getDuration() {
return this.duration;
}
public QueryLiveInfoResponseBodyResultLiveInfo setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryLiveInfoResponseBodyResultLiveInfo setIntroduction(String introduction) {
this.introduction = introduction;
return this;
}
public String getIntroduction() {
return this.introduction;
}
public QueryLiveInfoResponseBodyResultLiveInfo setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public QueryLiveInfoResponseBodyResultLiveInfo setLivePlayUrl(String livePlayUrl) {
this.livePlayUrl = livePlayUrl;
return this;
}
public String getLivePlayUrl() {
return this.livePlayUrl;
}
public QueryLiveInfoResponseBodyResultLiveInfo setLiveStatus(Integer liveStatus) {
this.liveStatus = liveStatus;
return this;
}
public Integer getLiveStatus() {
return this.liveStatus;
}
public QueryLiveInfoResponseBodyResultLiveInfo setPlaybackDuration(Long playbackDuration) {
this.playbackDuration = playbackDuration;
return this;
}
public Long getPlaybackDuration() {
return this.playbackDuration;
}
public QueryLiveInfoResponseBodyResultLiveInfo setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryLiveInfoResponseBodyResultLiveInfo setSubscribeCount(Integer subscribeCount) {
this.subscribeCount = subscribeCount;
return this;
}
public Integer getSubscribeCount() {
return this.subscribeCount;
}
public QueryLiveInfoResponseBodyResultLiveInfo setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public QueryLiveInfoResponseBodyResultLiveInfo setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public QueryLiveInfoResponseBodyResultLiveInfo setUv(Integer uv) {
this.uv = uv;
return this;
}
public Integer getUv() {
return this.uv;
}
}
public static class QueryLiveInfoResponseBodyResult extends TeaModel {
@NameInMap("liveInfo")
public QueryLiveInfoResponseBodyResultLiveInfo liveInfo;
public static QueryLiveInfoResponseBodyResult build(java.util.Map map) throws Exception {
QueryLiveInfoResponseBodyResult self = new QueryLiveInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryLiveInfoResponseBodyResult setLiveInfo(QueryLiveInfoResponseBodyResultLiveInfo liveInfo) {
this.liveInfo = liveInfo;
return this;
}
public QueryLiveInfoResponseBodyResultLiveInfo getLiveInfo() {
return this.liveInfo;
}
}
}