com.aliyun.dingtalkcool_app_1_0.models.InstallCoolAppToGroupRequest 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 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;
}
}