![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkconference_1_0.models.LockConferenceRequest 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.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class LockConferenceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* lock
*/
@NameInMap("action")
public String action;
public static LockConferenceRequest build(java.util.Map map) throws Exception {
LockConferenceRequest self = new LockConferenceRequest();
return TeaModel.build(map, self);
}
public LockConferenceRequest setAction(String action) {
this.action = action;
return this;
}
public String getAction() {
return this.action;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy