com.aliyun.dingtalkdatacenter_1_0.models.QueryGeneralDataServiceBatchResponseBody 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 QueryGeneralDataServiceBatchResponseBody extends TeaModel {
@NameInMap("dataList")
public java.util.List> dataList;
@NameInMap("metaList")
public java.util.List metaList;
@NameInMap("total")
public Long total;
public static QueryGeneralDataServiceBatchResponseBody build(java.util.Map map) throws Exception {
QueryGeneralDataServiceBatchResponseBody self = new QueryGeneralDataServiceBatchResponseBody();
return TeaModel.build(map, self);
}
public QueryGeneralDataServiceBatchResponseBody setDataList(java.util.List> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List> getDataList() {
return this.dataList;
}
public QueryGeneralDataServiceBatchResponseBody setMetaList(java.util.List metaList) {
this.metaList = metaList;
return this;
}
public java.util.List getMetaList() {
return this.metaList;
}
public QueryGeneralDataServiceBatchResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
public static class QueryGeneralDataServiceBatchResponseBodyMetaList extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("fieldDesc")
public String fieldDesc;
/**
* This parameter is required.
*/
@NameInMap("fieldId")
public String fieldId;
/**
* This parameter is required.
*/
@NameInMap("fieldName")
public String fieldName;
/**
* This parameter is required.
*/
@NameInMap("fieldType")
public String fieldType;
public static QueryGeneralDataServiceBatchResponseBodyMetaList build(java.util.Map map) throws Exception {
QueryGeneralDataServiceBatchResponseBodyMetaList self = new QueryGeneralDataServiceBatchResponseBodyMetaList();
return TeaModel.build(map, self);
}
public QueryGeneralDataServiceBatchResponseBodyMetaList setFieldDesc(String fieldDesc) {
this.fieldDesc = fieldDesc;
return this;
}
public String getFieldDesc() {
return this.fieldDesc;
}
public QueryGeneralDataServiceBatchResponseBodyMetaList setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public QueryGeneralDataServiceBatchResponseBodyMetaList setFieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
public String getFieldName() {
return this.fieldName;
}
public QueryGeneralDataServiceBatchResponseBodyMetaList setFieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
public String getFieldType() {
return this.fieldType;
}
}
}