com.aliyun.dingtalkim_1_0.models.RemoveRobotFromConversationRequest 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_1_0.models;
import com.aliyun.tea.*;
public class RemoveRobotFromConversationRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("chatBotUserId")
public String chatBotUserId;
/**
* This parameter is required.
*
* example:
* cid123cd
*/
@NameInMap("openConversationId")
public String openConversationId;
public static RemoveRobotFromConversationRequest build(java.util.Map map) throws Exception {
RemoveRobotFromConversationRequest self = new RemoveRobotFromConversationRequest();
return TeaModel.build(map, self);
}
public RemoveRobotFromConversationRequest setChatBotUserId(String chatBotUserId) {
this.chatBotUserId = chatBotUserId;
return this;
}
public String getChatBotUserId() {
return this.chatBotUserId;
}
public RemoveRobotFromConversationRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
}