com.aliyun.dingtalkcontact_1_0.models.GetLatestDingIndexResponseBody 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class GetLatestDingIndexResponseBody extends TeaModel {
// 绿色指数
@NameInMap("idxCarbon")
public Float idxCarbon;
// 效率指数
@NameInMap("idxEfficiency")
public Float idxEfficiency;
// 钉钉指数月均分
@NameInMap("idxMonthlyAvg")
public Float idxMonthlyAvg;
// 钉钉指数
@NameInMap("idxTotal")
public Float idxTotal;
// 日期
@NameInMap("statDate")
public String statDate;
public static GetLatestDingIndexResponseBody build(java.util.Map map) throws Exception {
GetLatestDingIndexResponseBody self = new GetLatestDingIndexResponseBody();
return TeaModel.build(map, self);
}
public GetLatestDingIndexResponseBody setIdxCarbon(Float idxCarbon) {
this.idxCarbon = idxCarbon;
return this;
}
public Float getIdxCarbon() {
return this.idxCarbon;
}
public GetLatestDingIndexResponseBody setIdxEfficiency(Float idxEfficiency) {
this.idxEfficiency = idxEfficiency;
return this;
}
public Float getIdxEfficiency() {
return this.idxEfficiency;
}
public GetLatestDingIndexResponseBody setIdxMonthlyAvg(Float idxMonthlyAvg) {
this.idxMonthlyAvg = idxMonthlyAvg;
return this;
}
public Float getIdxMonthlyAvg() {
return this.idxMonthlyAvg;
}
public GetLatestDingIndexResponseBody setIdxTotal(Float idxTotal) {
this.idxTotal = idxTotal;
return this;
}
public Float getIdxTotal() {
return this.idxTotal;
}
public GetLatestDingIndexResponseBody setStatDate(String statDate) {
this.statDate = statDate;
return this;
}
public String getStatDate() {
return this.statDate;
}
}