commonMain.app.bsky.graph.getStarterPacks.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.Pair
import kotlin.String
import kotlin.Suppress
import kotlinx.collections.immutable.toImmutableList
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.AtUri
import sh.christian.ozone.api.model.ReadOnlyList
@Serializable
public data class GetStarterPacksQueryParams(
public val uris: ReadOnlyList,
) {
init {
require(uris.count() <= 25) {
"uris.count() must be <= 25, but was ${uris.count()}"
}
}
public fun asList(): ReadOnlyList> = buildList {
uris.forEach {
add("uris" to it)
}
}.toImmutableList()
}
@Serializable
public data class GetStarterPacksResponse(
public val starterPacks: ReadOnlyList,
)