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

com.aliyun.dingtalkbizfinance_1_0.models.QueryProductByPageRequest 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 QueryProductByPageRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

1

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

This parameter is required.

* * example: *

10

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy