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