com.aliyun.dingtalklive_1_0.models.GetLiveReplayUrlRequest 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 GetLiveReplayUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 4d383876-1ff9-4b73-a057-a8f47b346ecb
*/
@NameInMap("liveId")
public String liveId;
/**
* This parameter is required.
*
* example:
* DC7wZGOSueEEIGOf3WKwWgiEiE
*/
@NameInMap("unionId")
public String unionId;
public static GetLiveReplayUrlRequest build(java.util.Map map) throws Exception {
GetLiveReplayUrlRequest self = new GetLiveReplayUrlRequest();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlRequest setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public GetLiveReplayUrlRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}