com.aliyun.dingtalkdatacenter_1_0.models.QueryYydGroupMsgDayStatisticalDataResponseBody 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 QueryYydGroupMsgDayStatisticalDataResponseBody extends TeaModel {
// 指标数据
@NameInMap("dataList")
public java.util.List> dataList;
// 指标元数据
@NameInMap("metaList")
public java.util.List metaList;
public static QueryYydGroupMsgDayStatisticalDataResponseBody build(java.util.Map map) throws Exception {
QueryYydGroupMsgDayStatisticalDataResponseBody self = new QueryYydGroupMsgDayStatisticalDataResponseBody();
return TeaModel.build(map, self);
}
public QueryYydGroupMsgDayStatisticalDataResponseBody setDataList(java.util.List> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List> getDataList() {
return this.dataList;
}
public QueryYydGroupMsgDayStatisticalDataResponseBody setMetaList(java.util.List metaList) {
this.metaList = metaList;
return this;
}
public java.util.List getMetaList() {
return this.metaList;
}
public static class QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList extends TeaModel {
// 指标口径
@NameInMap("kpiCaliber")
public String kpiCaliber;
// 指标ID
@NameInMap("kpiId")
public String kpiId;
// 指标名称
@NameInMap("kpiName")
public String kpiName;
// 指标周期
@NameInMap("period")
public String period;
// 指标单位
@NameInMap("unit")
public String unit;
public static QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList build(java.util.Map map) throws Exception {
QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList self = new QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList();
return TeaModel.build(map, self);
}
public QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList setKpiCaliber(String kpiCaliber) {
this.kpiCaliber = kpiCaliber;
return this;
}
public String getKpiCaliber() {
return this.kpiCaliber;
}
public QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList setKpiId(String kpiId) {
this.kpiId = kpiId;
return this;
}
public String getKpiId() {
return this.kpiId;
}
public QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList setKpiName(String kpiName) {
this.kpiName = kpiName;
return this;
}
public String getKpiName() {
return this.kpiName;
}
public QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList setPeriod(String period) {
this.period = period;
return this;
}
public String getPeriod() {
return this.period;
}
public QueryYydGroupMsgDayStatisticalDataResponseBodyMetaList setUnit(String unit) {
this.unit = unit;
return this;
}
public String getUnit() {
return this.unit;
}
}
}