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 {
    /**
     * 

This parameter is required.

* * example: *

18f923a7-5a5e-426d-94ae-a55ad1a4b240

*/ @NameInMap("departmentId") public String departmentId; /** * example: *

true

*/ @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