
com.aliyun.dingtalkim_1_0.models.RemoveRobotFromConversationRequest Maven / Gradle / Ivy
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy