com.aliyun.dingtalkh3yun_1_0.models.GetRoleUsersRequest 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.dingtalkh3yun_1_0.models;
import com.aliyun.tea.*;
public class GetRoleUsersRequest extends TeaModel {
// 角色id
@NameInMap("roleId")
public String roleId;
public static GetRoleUsersRequest build(java.util.Map map) throws Exception {
GetRoleUsersRequest self = new GetRoleUsersRequest();
return TeaModel.build(map, self);
}
public GetRoleUsersRequest setRoleId(String roleId) {
this.roleId = roleId;
return this;
}
public String getRoleId() {
return this.roleId;
}
}