![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkim_1_0.models.UpdateSceneGroupTemplateMessageOpenStatusRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class UpdateSceneGroupTemplateMessageOpenStatusRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*/
@NameInMap("templateIdList")
public java.util.List templateIdList;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static UpdateSceneGroupTemplateMessageOpenStatusRequest build(java.util.Map map) throws Exception {
UpdateSceneGroupTemplateMessageOpenStatusRequest self = new UpdateSceneGroupTemplateMessageOpenStatusRequest();
return TeaModel.build(map, self);
}
public UpdateSceneGroupTemplateMessageOpenStatusRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public UpdateSceneGroupTemplateMessageOpenStatusRequest setTemplateIdList(java.util.List templateIdList) {
this.templateIdList = templateIdList;
return this;
}
public java.util.List getTemplateIdList() {
return this.templateIdList;
}
public UpdateSceneGroupTemplateMessageOpenStatusRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy