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

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

There is a newer version: 2.1.50
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 GetUsersRequest extends TeaModel {
    // 部门id。
    @NameInMap("departmentId")
    public String departmentId;

    // 是否递归获取子级部门下的用户。默认值为false
    @NameInMap("isRecursive")
    public Boolean isRecursive;

    public static GetUsersRequest build(java.util.Map map) throws Exception {
        GetUsersRequest self = new GetUsersRequest();
        return TeaModel.build(map, self);
    }

    public GetUsersRequest setDepartmentId(String departmentId) {
        this.departmentId = departmentId;
        return this;
    }
    public String getDepartmentId() {
        return this.departmentId;
    }

    public GetUsersRequest setIsRecursive(Boolean isRecursive) {
        this.isRecursive = isRecursive;
        return this;
    }
    public Boolean getIsRecursive() {
        return this.isRecursive;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy