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

com.aliyun.dingtalkcool_app_1_0.models.InstallCoolAppToGroupRequest 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 InstallCoolAppToGroupRequest extends TeaModel {
    /**
     * example:
     * 

cidxxxx

*/ @NameInMap("conversationId") public String conversationId; /** * example: *

CoolApp-xxx

*/ @NameInMap("operateCoolAppCode") public String operateCoolAppCode; /** * example: *

staffid12

*/ @NameInMap("operatorId") public String operatorId; /** * example: *

template-id-xxx

*/ @NameInMap("templateId") public String templateId; public static InstallCoolAppToGroupRequest build(java.util.Map map) throws Exception { InstallCoolAppToGroupRequest self = new InstallCoolAppToGroupRequest(); return TeaModel.build(map, self); } public InstallCoolAppToGroupRequest setConversationId(String conversationId) { this.conversationId = conversationId; return this; } public String getConversationId() { return this.conversationId; } public InstallCoolAppToGroupRequest setOperateCoolAppCode(String operateCoolAppCode) { this.operateCoolAppCode = operateCoolAppCode; return this; } public String getOperateCoolAppCode() { return this.operateCoolAppCode; } public InstallCoolAppToGroupRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public InstallCoolAppToGroupRequest setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy