com.antgroup.antchain.openapi.bot.models.ProductKeyPageResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-bot Show documentation
Show all versions of openapi-bot Show documentation
Ant Chain BOT SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;
import com.aliyun.tea.*;
public class ProductKeyPageResponse extends TeaModel {
// 页数
//
@NameInMap("page_index")
@Validation(required = true)
public Long pageIndex;
// 页码
//
@NameInMap("page_size")
@Validation(required = true)
public Long pageSize;
// 总记录数
//
@NameInMap("total_size")
@Validation(required = true)
public Long totalSize;
// 总页数
//
@NameInMap("total_pages")
@Validation(required = true)
public Long totalPages;
// 数据
@NameInMap("page_data")
@Validation(required = true)
public java.util.List pageData;
public static ProductKeyPageResponse build(java.util.Map map) throws Exception {
ProductKeyPageResponse self = new ProductKeyPageResponse();
return TeaModel.build(map, self);
}
public ProductKeyPageResponse setPageIndex(Long pageIndex) {
this.pageIndex = pageIndex;
return this;
}
public Long getPageIndex() {
return this.pageIndex;
}
public ProductKeyPageResponse setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public ProductKeyPageResponse setTotalSize(Long totalSize) {
this.totalSize = totalSize;
return this;
}
public Long getTotalSize() {
return this.totalSize;
}
public ProductKeyPageResponse setTotalPages(Long totalPages) {
this.totalPages = totalPages;
return this;
}
public Long getTotalPages() {
return this.totalPages;
}
public ProductKeyPageResponse setPageData(java.util.List pageData) {
this.pageData = pageData;
return this;
}
public java.util.List getPageData() {
return this.pageData;
}
}