![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkconference_1_0.models.MuteMembersRequest 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 MuteMembersRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* mute
*/
@NameInMap("action")
public String action;
/**
* This parameter is required.
*/
@NameInMap("userList")
public java.util.List userList;
public static MuteMembersRequest build(java.util.Map map) throws Exception {
MuteMembersRequest self = new MuteMembersRequest();
return TeaModel.build(map, self);
}
public MuteMembersRequest setAction(String action) {
this.action = action;
return this;
}
public String getAction() {
return this.action;
}
public MuteMembersRequest setUserList(java.util.List userList) {
this.userList = userList;
return this;
}
public java.util.List getUserList() {
return this.userList;
}
public static class MuteMembersRequestUserList extends TeaModel {
/**
* example:
* 644272f14ba3311xxxxxxxxx
*/
@NameInMap("participantId")
public String participantId;
/**
* This parameter is required.
*
* example:
* qzR1iSMDvzR9iP7Pxxxxxxxxxxxxxxx
*/
@NameInMap("unionId")
public String unionId;
public static MuteMembersRequestUserList build(java.util.Map map) throws Exception {
MuteMembersRequestUserList self = new MuteMembersRequestUserList();
return TeaModel.build(map, self);
}
public MuteMembersRequestUserList setParticipantId(String participantId) {
this.participantId = participantId;
return this;
}
public String getParticipantId() {
return this.participantId;
}
public MuteMembersRequestUserList setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy