com.alipay.api.domain.QAChatDetail 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* QA会话信息
*
* @author auto create
* @since 1.0, 2024-06-06 11:13:53
*/
public class QAChatDetail extends AlipayObject {
private static final long serialVersionUID = 6641441364438635223L;
/**
* 机器人回答详情
*/
@ApiField("answer")
private RobotAnswer answer;
/**
* DOCUMENT:大模型文档问答; KNOWLEDGE:知识点问答; DST:多轮问答; SORRY:致歉语;
*/
@ApiField("answer_type")
private String answerType;
/**
* 本次机器人回答的id
*/
@ApiField("chat_uuid")
private String chatUuid;
/**
* 数据创建时间
*/
@ApiField("local_timestamp")
private String localTimestamp;
/**
* 问题内容
*/
@ApiField("query")
private String query;
/**
* 未评价:0
好评:1
差评:-1
*/
@ApiField("vote_type")
private String voteType;
public RobotAnswer getAnswer() {
return this.answer;
}
public void setAnswer(RobotAnswer answer) {
this.answer = answer;
}
public String getAnswerType() {
return this.answerType;
}
public void setAnswerType(String answerType) {
this.answerType = answerType;
}
public String getChatUuid() {
return this.chatUuid;
}
public void setChatUuid(String chatUuid) {
this.chatUuid = chatUuid;
}
public String getLocalTimestamp() {
return this.localTimestamp;
}
public void setLocalTimestamp(String localTimestamp) {
this.localTimestamp = localTimestamp;
}
public String getQuery() {
return this.query;
}
public void setQuery(String query) {
this.query = query;
}
public String getVoteType() {
return this.voteType;
}
public void setVoteType(String voteType) {
this.voteType = voteType;
}
}