![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdatacenter_1_0.models.QueryYydToatlMsgWeekStatisticalDataResponseBody 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 QueryYydToatlMsgWeekStatisticalDataResponseBody extends TeaModel {
@NameInMap("dataList")
public java.util.List> dataList;
@NameInMap("metaList")
public java.util.List metaList;
public static QueryYydToatlMsgWeekStatisticalDataResponseBody build(java.util.Map map) throws Exception {
QueryYydToatlMsgWeekStatisticalDataResponseBody self = new QueryYydToatlMsgWeekStatisticalDataResponseBody();
return TeaModel.build(map, self);
}
public QueryYydToatlMsgWeekStatisticalDataResponseBody setDataList(java.util.List> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List> getDataList() {
return this.dataList;
}
public QueryYydToatlMsgWeekStatisticalDataResponseBody setMetaList(java.util.List metaList) {
this.metaList = metaList;
return this;
}
public java.util.List getMetaList() {
return this.metaList;
}
public static class QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("kpiCaliber")
public String kpiCaliber;
/**
* This parameter is required.
*/
@NameInMap("kpiId")
public String kpiId;
/**
* This parameter is required.
*/
@NameInMap("kpiName")
public String kpiName;
/**
* This parameter is required.
*/
@NameInMap("period")
public String period;
/**
* This parameter is required.
*/
@NameInMap("unit")
public String unit;
public static QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList build(java.util.Map map) throws Exception {
QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList self = new QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList();
return TeaModel.build(map, self);
}
public QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList setKpiCaliber(String kpiCaliber) {
this.kpiCaliber = kpiCaliber;
return this;
}
public String getKpiCaliber() {
return this.kpiCaliber;
}
public QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList setKpiId(String kpiId) {
this.kpiId = kpiId;
return this;
}
public String getKpiId() {
return this.kpiId;
}
public QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList setKpiName(String kpiName) {
this.kpiName = kpiName;
return this;
}
public String getKpiName() {
return this.kpiName;
}
public QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList setPeriod(String period) {
this.period = period;
return this;
}
public String getPeriod() {
return this.period;
}
public QueryYydToatlMsgWeekStatisticalDataResponseBodyMetaList setUnit(String unit) {
this.unit = unit;
return this;
}
public String getUnit() {
return this.unit;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy