com.aliyun.dingtalkapaas_1_0.models.RecallAuditTemplateRequest 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 RecallAuditTemplateRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("templateKeys")
public java.util.List templateKeys;
public static RecallAuditTemplateRequest build(java.util.Map map) throws Exception {
RecallAuditTemplateRequest self = new RecallAuditTemplateRequest();
return TeaModel.build(map, self);
}
public RecallAuditTemplateRequest setTemplateKeys(java.util.List templateKeys) {
this.templateKeys = templateKeys;
return this;
}
public java.util.List getTemplateKeys() {
return this.templateKeys;
}
}