All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.AnswerClarifyCardDetail Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import java.util.List;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;

/**
 * 机器对话问答接口回复澄清卡片详情
 *
 * @author auto create
 * @since 1.0, 2024-07-31 11:02:41
 */
public class AnswerClarifyCardDetail extends AlipayObject {

	private static final long serialVersionUID = 4692165261459256912L;

	/**
	 * 澄清卡片,多轮问答的反问内容。
	 */
	@ApiListField("dst_list")
	@ApiField("string")
	private List dstList;

	/**
	 * 关注的问题。澄清卡片前置文案
	 */
	@ApiField("follow_question")
	private String followQuestion;

	public List getDstList() {
		return this.dstList;
	}
	public void setDstList(List dstList) {
		this.dstList = dstList;
	}

	public String getFollowQuestion() {
		return this.followQuestion;
	}
	public void setFollowQuestion(String followQuestion) {
		this.followQuestion = followQuestion;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy