com.aliyun.dingtalkapaas_1_0.models.BatchUpdateTemplateResponseBody 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 BatchUpdateTemplateResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("updateResultList")
public java.util.List updateResultList;
public static BatchUpdateTemplateResponseBody build(java.util.Map map) throws Exception {
BatchUpdateTemplateResponseBody self = new BatchUpdateTemplateResponseBody();
return TeaModel.build(map, self);
}
public BatchUpdateTemplateResponseBody setUpdateResultList(java.util.List updateResultList) {
this.updateResultList = updateResultList;
return this;
}
public java.util.List getUpdateResultList() {
return this.updateResultList;
}
public static class BatchUpdateTemplateResponseBodyUpdateResultList extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("templateKey")
public String templateKey;
/**
* This parameter is required.
*/
@NameInMap("value")
public String value;
public static BatchUpdateTemplateResponseBodyUpdateResultList build(java.util.Map map) throws Exception {
BatchUpdateTemplateResponseBodyUpdateResultList self = new BatchUpdateTemplateResponseBodyUpdateResultList();
return TeaModel.build(map, self);
}
public BatchUpdateTemplateResponseBodyUpdateResultList setTemplateKey(String templateKey) {
this.templateKey = templateKey;
return this;
}
public String getTemplateKey() {
return this.templateKey;
}
public BatchUpdateTemplateResponseBodyUpdateResultList setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
}