com.aliyun.dingtalkim_1_0.models.UpdateGroupSubAdminRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class UpdateGroupSubAdminRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cidXXXXXXX
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*/
@NameInMap("role")
public Long role;
/**
* This parameter is required.
*/
@NameInMap("userIds")
public java.util.List userIds;
public static UpdateGroupSubAdminRequest build(java.util.Map map) throws Exception {
UpdateGroupSubAdminRequest self = new UpdateGroupSubAdminRequest();
return TeaModel.build(map, self);
}
public UpdateGroupSubAdminRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public UpdateGroupSubAdminRequest setRole(Long role) {
this.role = role;
return this;
}
public Long getRole() {
return this.role;
}
public UpdateGroupSubAdminRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}