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

com.aliyun.dingtalkindustry_1_0.models.SupplyListDeptMembersRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class SupplyListDeptMembersRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

10

*/ @NameInMap("pageNumber") public Long pageNumber; /** *

This parameter is required.

* * example: *

100

*/ @NameInMap("pageSize") public Long pageSize; /** *

This parameter is required.

* * example: *

1111

*/ @NameInMap("supplyDeptId") public Long supplyDeptId; public static SupplyListDeptMembersRequest build(java.util.Map map) throws Exception { SupplyListDeptMembersRequest self = new SupplyListDeptMembersRequest(); return TeaModel.build(map, self); } public SupplyListDeptMembersRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public SupplyListDeptMembersRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public SupplyListDeptMembersRequest setSupplyDeptId(Long supplyDeptId) { this.supplyDeptId = supplyDeptId; return this; } public Long getSupplyDeptId() { return this.supplyDeptId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy