commonMain.app.bsky.graph.searchStarterPacks.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluesky Show documentation
Show all versions of bluesky Show documentation
Bluesky Social API bindings for Kotlin.
The newest version!
@file:Suppress("DEPRECATION")
package app.bsky.graph
import kotlin.Any
import kotlin.Long
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlinx.serialization.Serializable
/**
* @param q Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene
* query syntax is recommended.
*/
@Serializable
public data class SearchStarterPacksQueryParams(
/**
* Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query
* syntax is recommended.
*/
public val q: String,
public val limit: Long? = 25,
public val cursor: String? = null,
) {
init {
require(limit == null || limit >= 1) {
"limit must be >= 1, but was $limit"
}
require(limit == null || limit <= 100) {
"limit must be <= 100, but was $limit"
}
}
public fun asList(): List> = buildList {
add("q" to q)
add("limit" to limit)
add("cursor" to cursor)
}
}
@Serializable
public data class SearchStarterPacksResponse(
public val cursor: String? = null,
public val starterPacks: List,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy