![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalklive_1_0.models.GetLiveReplayUrlResponseBody 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 GetLiveReplayUrlResponseBody extends TeaModel {
@NameInMap("result")
public GetLiveReplayUrlResponseBodyResult result;
public static GetLiveReplayUrlResponseBody build(java.util.Map map) throws Exception {
GetLiveReplayUrlResponseBody self = new GetLiveReplayUrlResponseBody();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlResponseBody setResult(GetLiveReplayUrlResponseBodyResult result) {
this.result = result;
return this;
}
public GetLiveReplayUrlResponseBodyResult getResult() {
return this.result;
}
public static class GetLiveReplayUrlResponseBodyResult extends TeaModel {
/**
* example:
* http://xxx.dingtalk.com/live_hp/7c7ba32a-c92d-4524-b71e-33a72575c5a9_normal.m3u8?auth_key=xxx
*/
@NameInMap("replayUrl")
public String replayUrl;
public static GetLiveReplayUrlResponseBodyResult build(java.util.Map map) throws Exception {
GetLiveReplayUrlResponseBodyResult self = new GetLiveReplayUrlResponseBodyResult();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlResponseBodyResult setReplayUrl(String replayUrl) {
this.replayUrl = replayUrl;
return this;
}
public String getReplayUrl() {
return this.replayUrl;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy