
commonMain.tools.ozone.set.getValues.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.
@file:Suppress("DEPRECATION")
package tools.ozone.`set`
import kotlin.Any
import kotlin.Long
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlinx.collections.immutable.toImmutableList
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.model.ReadOnlyList
@Serializable
public data class GetValuesQueryParams(
public val name: String,
public val limit: Long? = 100,
public val cursor: String? = null,
) {
init {
require(limit == null || limit >= 1) {
"limit must be >= 1, but was $limit"
}
require(limit == null || limit <= 1_000) {
"limit must be <= 1_000, but was $limit"
}
}
public fun asList(): ReadOnlyList> = buildList {
add("name" to name)
add("limit" to limit)
add("cursor" to cursor)
}.toImmutableList()
}
@Serializable
public data class GetValuesResponse(
public val `set`: SetView,
public val values: ReadOnlyList,
public val cursor: String? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy