com.aliyun.ice20201109.models.ListSearchLibRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class ListSearchLibRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("PageNo")
public Integer pageNo;
/**
* example:
* 10
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListSearchLibRequest build(java.util.Map map) throws Exception {
ListSearchLibRequest self = new ListSearchLibRequest();
return TeaModel.build(map, self);
}
public ListSearchLibRequest setPageNo(Integer pageNo) {
this.pageNo = pageNo;
return this;
}
public Integer getPageNo() {
return this.pageNo;
}
public ListSearchLibRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}