All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkh3yun_1_0.models.GetRoleUsersRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy