All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkservice_group_1_0.models.GroupStatisticsResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class GroupStatisticsResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

10

*/ @NameInMap("groupCount") public Long groupCount; /** *

This parameter is required.

*/ @NameInMap("groupTrend") public java.util.List groupTrend; /** *

This parameter is required.

* * example: *

1

*/ @NameInMap("increaseGroupCount") public Long increaseGroupCount; /** *

This parameter is required.

* * example: *

0.1

*/ @NameInMap("increaseRate") public String increaseRate; public static GroupStatisticsResponseBody build(java.util.Map map) throws Exception { GroupStatisticsResponseBody self = new GroupStatisticsResponseBody(); return TeaModel.build(map, self); } public GroupStatisticsResponseBody setGroupCount(Long groupCount) { this.groupCount = groupCount; return this; } public Long getGroupCount() { return this.groupCount; } public GroupStatisticsResponseBody setGroupTrend(java.util.List groupTrend) { this.groupTrend = groupTrend; return this; } public java.util.List getGroupTrend() { return this.groupTrend; } public GroupStatisticsResponseBody setIncreaseGroupCount(Long increaseGroupCount) { this.increaseGroupCount = increaseGroupCount; return this; } public Long getIncreaseGroupCount() { return this.increaseGroupCount; } public GroupStatisticsResponseBody setIncreaseRate(String increaseRate) { this.increaseRate = increaseRate; return this; } public String getIncreaseRate() { return this.increaseRate; } public static class GroupStatisticsResponseBodyGroupTrend extends TeaModel { /** *

This parameter is required.

* * example: *

10

*/ @NameInMap("count") public Long count; /** *

This parameter is required.

* * example: *

20220101

*/ @NameInMap("dt") public String dt; public static GroupStatisticsResponseBodyGroupTrend build(java.util.Map map) throws Exception { GroupStatisticsResponseBodyGroupTrend self = new GroupStatisticsResponseBodyGroupTrend(); return TeaModel.build(map, self); } public GroupStatisticsResponseBodyGroupTrend setCount(Long count) { this.count = count; return this; } public Long getCount() { return this.count; } public GroupStatisticsResponseBodyGroupTrend setDt(String dt) { this.dt = dt; return this; } public String getDt() { return this.dt; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy