![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkservice_group_1_0.models.BatchGetGroupSetConfigResponseBody 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.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