All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkjzcrm_1_0.models.GetDataListRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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