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

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

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class BatchGetGroupSetConfigResponseBody extends TeaModel {
    @NameInMap("groupSetConfigs")
    public java.util.List groupSetConfigs;

    public static BatchGetGroupSetConfigResponseBody build(java.util.Map map) throws Exception {
        BatchGetGroupSetConfigResponseBody self = new BatchGetGroupSetConfigResponseBody();
        return TeaModel.build(map, self);
    }

    public BatchGetGroupSetConfigResponseBody setGroupSetConfigs(java.util.List groupSetConfigs) {
        this.groupSetConfigs = groupSetConfigs;
        return this;
    }
    public java.util.List getGroupSetConfigs() {
        return this.groupSetConfigs;
    }

    public static class BatchGetGroupSetConfigResponseBodyGroupSetConfigs extends TeaModel {
        /**
         * 

This parameter is required.

* * example: *

ROBOT_SWITCH

*/ @NameInMap("configKey") public String configKey; /** *

This parameter is required.

* * example: *

1

*/ @NameInMap("configValue") public String configValue; public static BatchGetGroupSetConfigResponseBodyGroupSetConfigs build(java.util.Map map) throws Exception { BatchGetGroupSetConfigResponseBodyGroupSetConfigs self = new BatchGetGroupSetConfigResponseBodyGroupSetConfigs(); return TeaModel.build(map, self); } public BatchGetGroupSetConfigResponseBodyGroupSetConfigs setConfigKey(String configKey) { this.configKey = configKey; return this; } public String getConfigKey() { return this.configKey; } public BatchGetGroupSetConfigResponseBodyGroupSetConfigs setConfigValue(String configValue) { this.configValue = configValue; return this; } public String getConfigValue() { return this.configValue; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy