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.30
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 {
    // 数据类型,参考数据类型ID对照表
    @NameInMap("datatype")
    public String datatype;

    // 页码
    @NameInMap("page")
    public Long page;

    // 分页条数
    @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 - 2024 Weber Informatics LLC | Privacy Policy