com.aliyun.dingtalkdatacenter_1_0.models.QueryOfficialDatasetListRequest 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.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class QueryOfficialDatasetListRequest extends TeaModel {
@NameInMap("keyword")
public String keyword;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Integer pageSize;
public static QueryOfficialDatasetListRequest build(java.util.Map map) throws Exception {
QueryOfficialDatasetListRequest self = new QueryOfficialDatasetListRequest();
return TeaModel.build(map, self);
}
public QueryOfficialDatasetListRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public QueryOfficialDatasetListRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public QueryOfficialDatasetListRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}