com.alipay.api.response.AnttechAiAgentChatQueryResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.DTAgentChatResult;
import com.alipay.api.domain.DTAgentChatStream;
import com.alipay.api.domain.DTAgentTagInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: anttech.ai.agent.chat.query response.
*
* @author auto create
* @since 1.0, 2024-12-11 20:44:48
*/
public class AnttechAiAgentChatQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6293482554314212965L;
/**
* 最终完整结果的内容
*/
@ApiField("chat_result")
private DTAgentChatResult chatResult;
/**
* 输出状态
*/
@ApiField("process_status")
private String processStatus;
/**
* 流式输出结构
*/
@ApiField("stream")
private DTAgentChatStream stream;
/**
* 会话结果标签
*/
@ApiListField("tags")
@ApiField("d_t_agent_tag_info")
private List tags;
public void setChatResult(DTAgentChatResult chatResult) {
this.chatResult = chatResult;
}
public DTAgentChatResult getChatResult( ) {
return this.chatResult;
}
public void setProcessStatus(String processStatus) {
this.processStatus = processStatus;
}
public String getProcessStatus( ) {
return this.processStatus;
}
public void setStream(DTAgentChatStream stream) {
this.stream = stream;
}
public DTAgentChatStream getStream( ) {
return this.stream;
}
public void setTags(List tags) {
this.tags = tags;
}
public List getTags( ) {
return this.tags;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy