All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkcool_app_1_0.models.InstallCoolAppOrderToGroupRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy