com.aliyun.dingtalkim_2_0.models.CloseTopboxRequest 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.dingtalkim_2_0.models;
import com.aliyun.tea.*;
public class CloseTopboxRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("conversationType")
public Integer conversationType;
/**
* example:
* COOLAPP-x-xxx
*/
@NameInMap("coolAppCode")
public String coolAppCode;
/**
* example:
* 6dx-xxx-xxx
*/
@NameInMap("groupTemplateId")
public String groupTemplateId;
/**
* example:
* cidxxxxx==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* 123xxx
*/
@NameInMap("outTrackId")
public String outTrackId;
/**
* example:
* dingxxx
*/
@NameInMap("robotCode")
public String robotCode;
/**
* example:
* jHsR7xxx
*/
@NameInMap("unoinId")
public String unoinId;
/**
* example:
* 011xxx
*/
@NameInMap("userId")
public String userId;
public static CloseTopboxRequest build(java.util.Map map) throws Exception {
CloseTopboxRequest self = new CloseTopboxRequest();
return TeaModel.build(map, self);
}
public CloseTopboxRequest setConversationType(Integer conversationType) {
this.conversationType = conversationType;
return this;
}
public Integer getConversationType() {
return this.conversationType;
}
public CloseTopboxRequest setCoolAppCode(String coolAppCode) {
this.coolAppCode = coolAppCode;
return this;
}
public String getCoolAppCode() {
return this.coolAppCode;
}
public CloseTopboxRequest setGroupTemplateId(String groupTemplateId) {
this.groupTemplateId = groupTemplateId;
return this;
}
public String getGroupTemplateId() {
return this.groupTemplateId;
}
public CloseTopboxRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public CloseTopboxRequest setOutTrackId(String outTrackId) {
this.outTrackId = outTrackId;
return this;
}
public String getOutTrackId() {
return this.outTrackId;
}
public CloseTopboxRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
public CloseTopboxRequest setUnoinId(String unoinId) {
this.unoinId = unoinId;
return this;
}
public String getUnoinId() {
return this.unoinId;
}
public CloseTopboxRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}