com.volcengine.model.request.ArticleSearchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class ArticleSearchRequest {
@JSONField(name = "Keyword")
String keyword; // 搜索关键词
@JSONField(name = "UniqUserId")
String uniqUserId; // 用户唯一标识
@JSONField(name = "Category")
String category; // 场景ID
@JSONField(name = "GenerateTypeList")
List generateTypeList; // 查询特定来源的内容
@JSONField(name = "PageSize")
Integer pageSize; // 分页数量限制
@JSONField(name = "Offset")
Integer offset; // 分页内容位置
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy