![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkapaas_1_0.models.BatchCreateTemplateResponseBody 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.dingtalkapaas_1_0.models;
import com.aliyun.tea.*;
public class BatchCreateTemplateResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("createResultList")
public java.util.List createResultList;
public static BatchCreateTemplateResponseBody build(java.util.Map map) throws Exception {
BatchCreateTemplateResponseBody self = new BatchCreateTemplateResponseBody();
return TeaModel.build(map, self);
}
public BatchCreateTemplateResponseBody setCreateResultList(java.util.List createResultList) {
this.createResultList = createResultList;
return this;
}
public java.util.List getCreateResultList() {
return this.createResultList;
}
public static class BatchCreateTemplateResponseBodyCreateResultList extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("templateKey")
public String templateKey;
/**
* This parameter is required.
*/
@NameInMap("value")
public String value;
public static BatchCreateTemplateResponseBodyCreateResultList build(java.util.Map map) throws Exception {
BatchCreateTemplateResponseBodyCreateResultList self = new BatchCreateTemplateResponseBodyCreateResultList();
return TeaModel.build(map, self);
}
public BatchCreateTemplateResponseBodyCreateResultList setTemplateKey(String templateKey) {
this.templateKey = templateKey;
return this;
}
public String getTemplateKey() {
return this.templateKey;
}
public BatchCreateTemplateResponseBodyCreateResultList setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy