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

com.aliyun.dingtalkbizfinance_1_0.models.QueryCategoryByPageRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;

import com.aliyun.tea.*;

public class QueryCategoryByPageRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

1

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

This parameter is required.

* * example: *

10

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

This parameter is required.

* * example: *

0

*/ @NameInMap("type") public String type; public static QueryCategoryByPageRequest build(java.util.Map map) throws Exception { QueryCategoryByPageRequest self = new QueryCategoryByPageRequest(); return TeaModel.build(map, self); } public QueryCategoryByPageRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public QueryCategoryByPageRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public QueryCategoryByPageRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy