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

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

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, 2022-03-02 17:13:04
 */
public class KeywordsHighlight extends AlipayObject {

	private static final long serialVersionUID = 2827138254274663868L;

	/**
	 * 将搜索关键字用进行高亮显示
	 */
	@ApiListField("searchable_text")
	@ApiField("string")
	private List searchableText;

	/**
	 * 摘要的高亮字段
	 */
	@ApiListField("summary")
	@ApiField("string")
	private List summary;

	/**
	 * 将标题关键字高亮显示
	 */
	@ApiListField("title")
	@ApiField("string")
	private List title;

	public List getSearchableText() {
		return this.searchableText;
	}
	public void setSearchableText(List searchableText) {
		this.searchableText = searchableText;
	}

	public List getSummary() {
		return this.summary;
	}
	public void setSummary(List summary) {
		this.summary = summary;
	}

	public List getTitle() {
		return this.title;
	}
	public void setTitle(List title) {
		this.title = title;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy