com.aliyun.dingtalkconference_1_0.models.MuteAllRequest 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 MuteAllRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* mute
*/
@NameInMap("action")
public String action;
@NameInMap("forceMute")
public Boolean forceMute;
public static MuteAllRequest build(java.util.Map map) throws Exception {
MuteAllRequest self = new MuteAllRequest();
return TeaModel.build(map, self);
}
public MuteAllRequest setAction(String action) {
this.action = action;
return this;
}
public String getAction() {
return this.action;
}
public MuteAllRequest setForceMute(Boolean forceMute) {
this.forceMute = forceMute;
return this;
}
public Boolean getForceMute() {
return this.forceMute;
}
}