com.aliyun.dingtalkimpaas_1_0.models.RemoveGroupMembersRequest 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class RemoveGroupMembersRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("conversationId")
public String conversationId;
/**
* This parameter is required.
*
* if can be null:
* true
*/
@NameInMap("memberUids")
public java.util.List memberUids;
@NameInMap("operatorUid")
public String operatorUid;
public static RemoveGroupMembersRequest build(java.util.Map map) throws Exception {
RemoveGroupMembersRequest self = new RemoveGroupMembersRequest();
return TeaModel.build(map, self);
}
public RemoveGroupMembersRequest setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public RemoveGroupMembersRequest setMemberUids(java.util.List memberUids) {
this.memberUids = memberUids;
return this;
}
public java.util.List getMemberUids() {
return this.memberUids;
}
public RemoveGroupMembersRequest setOperatorUid(String operatorUid) {
this.operatorUid = operatorUid;
return this;
}
public String getOperatorUid() {
return this.operatorUid;
}
}