com.aliyun.dingtalkexclusive_1_0.models.GetConfBaseInfoByLogicalIdRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetConfBaseInfoByLogicalIdRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("logicalConferenceId")
public String logicalConferenceId;
public static GetConfBaseInfoByLogicalIdRequest build(java.util.Map map) throws Exception {
GetConfBaseInfoByLogicalIdRequest self = new GetConfBaseInfoByLogicalIdRequest();
return TeaModel.build(map, self);
}
public GetConfBaseInfoByLogicalIdRequest setLogicalConferenceId(String logicalConferenceId) {
this.logicalConferenceId = logicalConferenceId;
return this;
}
public String getLogicalConferenceId() {
return this.logicalConferenceId;
}
}