![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalklive_1_0.models.CreateLiveResponseBody 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 CreateLiveResponseBody extends TeaModel {
@NameInMap("result")
public CreateLiveResponseBodyResult result;
public static CreateLiveResponseBody build(java.util.Map map) throws Exception {
CreateLiveResponseBody self = new CreateLiveResponseBody();
return TeaModel.build(map, self);
}
public CreateLiveResponseBody setResult(CreateLiveResponseBodyResult result) {
this.result = result;
return this;
}
public CreateLiveResponseBodyResult getResult() {
return this.result;
}
public static class CreateLiveResponseBodyResult extends TeaModel {
/**
* example:
* 1a353547-040d-4095-bb93-404bc5d47920
*/
@NameInMap("liveId")
public String liveId;
public static CreateLiveResponseBodyResult build(java.util.Map map) throws Exception {
CreateLiveResponseBodyResult self = new CreateLiveResponseBodyResult();
return TeaModel.build(map, self);
}
public CreateLiveResponseBodyResult setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy