SearchActorsSkeletonQueryParams

data class SearchActorsSkeletonQueryParams(val q: String, val viewer: Did? = null, val typeahead: Boolean? = null, val limit: Long? = 25, val cursor: String? = null)

Constructors

Link copied to clipboard
constructor(q: String, viewer: Did? = null, typeahead: Boolean? = null, limit: Long? = 25, cursor: String? = null)

Properties

Link copied to clipboard
val cursor: String? = null

Optional pagination mechanism; may not necessarily allow scrolling through entire result set.

Link copied to clipboard
val limit: Long? = 25
Link copied to clipboard
val q: String

Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.

Link copied to clipboard
val typeahead: Boolean? = null

If true, acts as fast/simple 'typeahead' query.

Link copied to clipboard
val viewer: Did? = null

DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.

Functions

Link copied to clipboard