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

com.aliyun.dingtalkevent_1_0.models.InstallCoolAppRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkevent_1_0.models;

import com.aliyun.tea.*;

public class InstallCoolAppRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("appId") public Long appId; /** *

This parameter is required.

*/ @NameInMap("coolAppCode") public String coolAppCode; /** *

This parameter is required.

*/ @NameInMap("corpId") public String corpId; @NameInMap("feature") public java.util.Map feature; /** *

This parameter is required.

*/ @NameInMap("installUid") public String installUid; /** *

This parameter is required.

*/ @NameInMap("openConversationId") public String openConversationId; @NameInMap("options") public java.util.Map options; /** *

This parameter is required.

*/ @NameInMap("suiteId") public String suiteId; public static InstallCoolAppRequest build(java.util.Map map) throws Exception { InstallCoolAppRequest self = new InstallCoolAppRequest(); return TeaModel.build(map, self); } public InstallCoolAppRequest setAppId(Long appId) { this.appId = appId; return this; } public Long getAppId() { return this.appId; } public InstallCoolAppRequest setCoolAppCode(String coolAppCode) { this.coolAppCode = coolAppCode; return this; } public String getCoolAppCode() { return this.coolAppCode; } public InstallCoolAppRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public InstallCoolAppRequest setFeature(java.util.Map feature) { this.feature = feature; return this; } public java.util.Map getFeature() { return this.feature; } public InstallCoolAppRequest setInstallUid(String installUid) { this.installUid = installUid; return this; } public String getInstallUid() { return this.installUid; } public InstallCoolAppRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public InstallCoolAppRequest setOptions(java.util.Map options) { this.options = options; return this; } public java.util.Map getOptions() { return this.options; } public InstallCoolAppRequest setSuiteId(String suiteId) { this.suiteId = suiteId; return this; } public String getSuiteId() { return this.suiteId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy