com.alipay.api.response.AlipayEbppIndustryBotSessionConsultResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.BotAnswer;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.industry.bot.session.consult response.
*
* @author auto create
* @since 1.0, 2024-12-09 19:18:25
*/
public class AlipayEbppIndustryBotSessionConsultResponse extends AlipayResponse {
private static final long serialVersionUID = 3518525725387994234L;
/**
* 机器人对话问答的回复
*/
@ApiField("answer")
private BotAnswer answer;
/**
* 对话id
*/
@ApiField("chat_id")
private String chatId;
/**
* 机器人会话id
*/
@ApiField("session_id")
private String sessionId;
public void setAnswer(BotAnswer answer) {
this.answer = answer;
}
public BotAnswer getAnswer( ) {
return this.answer;
}
public void setChatId(String chatId) {
this.chatId = chatId;
}
public String getChatId( ) {
return this.chatId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
}
public String getSessionId( ) {
return this.sessionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy