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.30
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 {
        // 配置项key
        @NameInMap("configKey")
        public String configKey;

        // 配置项值
        @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 - 2024 Weber Informatics LLC | Privacy Policy