com.aliyun.dingtalkim_1_0.models.OpenGroupRoleRemoveRequest 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 OpenGroupRoleRemoveRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*/
@NameInMap("openRoleId")
public String openRoleId;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static OpenGroupRoleRemoveRequest build(java.util.Map map) throws Exception {
OpenGroupRoleRemoveRequest self = new OpenGroupRoleRemoveRequest();
return TeaModel.build(map, self);
}
public OpenGroupRoleRemoveRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public OpenGroupRoleRemoveRequest setOpenRoleId(String openRoleId) {
this.openRoleId = openRoleId;
return this;
}
public String getOpenRoleId() {
return this.openRoleId;
}
public OpenGroupRoleRemoveRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}