SearchParams

@Serializable
data class SearchParams(val query: String, val type: String? = null, val cursor: String? = null, val limit: Int? = null, val page: Int? = null)

搜索参数。

Parameters

query

搜索关键词

type

搜索类型(可选)

Constructors

Link copied to clipboard
constructor(query: String, type: String? = null, cursor: String? = null, limit: Int? = null, page: Int? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val limit: Int?
Link copied to clipboard
val page: Int?
Link copied to clipboard
Link copied to clipboard
val type: String?