![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkjzcrm_1_0.models.GetDataListRequest 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.dingtalkjzcrm_1_0.models;
import com.aliyun.tea.*;
public class GetDataListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 150
*/
@NameInMap("datatype")
public String datatype;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("page")
public Long page;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("pagesize")
public Long pagesize;
public static GetDataListRequest build(java.util.Map map) throws Exception {
GetDataListRequest self = new GetDataListRequest();
return TeaModel.build(map, self);
}
public GetDataListRequest setDatatype(String datatype) {
this.datatype = datatype;
return this;
}
public String getDatatype() {
return this.datatype;
}
public GetDataListRequest setPage(Long page) {
this.page = page;
return this;
}
public Long getPage() {
return this.page;
}
public GetDataListRequest setPagesize(Long pagesize) {
this.pagesize = pagesize;
return this;
}
public Long getPagesize() {
return this.pagesize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy