com.aliyun.dingtalkcool_app_1_0.models.InstallCoolAppOrderToGroupRequest 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.dingtalkcool_app_1_0.models;
import com.aliyun.tea.*;
public class InstallCoolAppOrderToGroupRequest extends TeaModel {
/**
* example:
* cidxxx
*/
@NameInMap("conversationId")
public String conversationId;
@NameInMap("sortedPluginIdList")
public java.util.List sortedPluginIdList;
/**
* example:
* template-id-xxx
*/
@NameInMap("templateId")
public String templateId;
@NameInMap("unsortedPluginIdList")
public java.util.List unsortedPluginIdList;
public static InstallCoolAppOrderToGroupRequest build(java.util.Map map) throws Exception {
InstallCoolAppOrderToGroupRequest self = new InstallCoolAppOrderToGroupRequest();
return TeaModel.build(map, self);
}
public InstallCoolAppOrderToGroupRequest setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public InstallCoolAppOrderToGroupRequest setSortedPluginIdList(java.util.List sortedPluginIdList) {
this.sortedPluginIdList = sortedPluginIdList;
return this;
}
public java.util.List getSortedPluginIdList() {
return this.sortedPluginIdList;
}
public InstallCoolAppOrderToGroupRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public InstallCoolAppOrderToGroupRequest setUnsortedPluginIdList(java.util.List unsortedPluginIdList) {
this.unsortedPluginIdList = unsortedPluginIdList;
return this;
}
public java.util.List getUnsortedPluginIdList() {
return this.unsortedPluginIdList;
}
}