com.antgroup.antchain.openapi.ato.models.PageQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class PageQuery extends TeaModel {
// 页大小
@NameInMap("page_size")
@Validation(required = true)
public Long pageSize;
// 当前页
@NameInMap("page_index")
@Validation(required = true)
public Long pageIndex;
public static PageQuery build(java.util.Map map) throws Exception {
PageQuery self = new PageQuery();
return TeaModel.build(map, self);
}
public PageQuery setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public PageQuery setPageIndex(Long pageIndex) {
this.pageIndex = pageIndex;
return this;
}
public Long getPageIndex() {
return this.pageIndex;
}
}