![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_1_0.models.QueryEnterpriseAccountByPageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class QueryEnterpriseAccountByPageRequest 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 QueryEnterpriseAccountByPageRequest build(java.util.Map map) throws Exception {
QueryEnterpriseAccountByPageRequest self = new QueryEnterpriseAccountByPageRequest();
return TeaModel.build(map, self);
}
public QueryEnterpriseAccountByPageRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public QueryEnterpriseAccountByPageRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy