com.alipay.api.domain.AosSuggestItem 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;
/**
* query suggest实体
*
* @author auto create
* @since 1.0, 2023-07-31 17:21:20
*/
public class AosSuggestItem extends AlipayObject {
private static final long serialVersionUID = 5631284132181783421L;
/**
* 业务链路ID
*/
@ApiField("biz_trace_id")
private String bizTraceId;
/**
* item的打分
*/
@ApiField("score")
private String score;
/**
* 搜索结果item的sequence用于关联搜索热搜和用户点击行为
*/
@ApiField("sequence")
private String sequence;
/**
* suggest的词
*/
@ApiField("title")
private String title;
/**
* 结果item的trace_id用于关联搜索推荐和用户行为 当前字段已废弃(接口改造导致参数冲突)
*/
@ApiField("trace_id")
@Deprecated
private String traceId;
public String getBizTraceId() {
return this.bizTraceId;
}
public void setBizTraceId(String bizTraceId) {
this.bizTraceId = bizTraceId;
}
public String getScore() {
return this.score;
}
public void setScore(String score) {
this.score = score;
}
public String getSequence() {
return this.sequence;
}
public void setSequence(String sequence) {
this.sequence = sequence;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getTraceId() {
return this.traceId;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
}