com.aliyun.dingtalkjzcrm_1_0.models.GetDataListResponseBody 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 GetDataListResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("data")
public java.util.List data;
/**
* This parameter is required.
*/
@NameInMap("dataname")
public java.util.Map dataname;
/**
* This parameter is required.
*/
@NameInMap("page")
public Long page;
/**
* This parameter is required.
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* This parameter is required.
*/
@NameInMap("time")
public String time;
/**
* This parameter is required.
*/
@NameInMap("totalCount")
public Long totalCount;
public static GetDataListResponseBody build(java.util.Map map) throws Exception {
GetDataListResponseBody self = new GetDataListResponseBody();
return TeaModel.build(map, self);
}
public GetDataListResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public GetDataListResponseBody setDataname(java.util.Map dataname) {
this.dataname = dataname;
return this;
}
public java.util.Map getDataname() {
return this.dataname;
}
public GetDataListResponseBody setPage(Long page) {
this.page = page;
return this;
}
public Long getPage() {
return this.page;
}
public GetDataListResponseBody setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public GetDataListResponseBody setTime(String time) {
this.time = time;
return this;
}
public String getTime() {
return this.time;
}
public GetDataListResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public static class GetDataListResponseBodyData extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("detail")
public java.util.Map detail;
public static GetDataListResponseBodyData build(java.util.Map map) throws Exception {
GetDataListResponseBodyData self = new GetDataListResponseBodyData();
return TeaModel.build(map, self);
}
public GetDataListResponseBodyData setDetail(java.util.Map detail) {
this.detail = detail;
return this;
}
public java.util.Map getDetail() {
return this.detail;
}
}
}