commonMain.tools.ozone.signature.findRelatedAccounts.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 tools.ozone.signature
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.Did
import sh.christian.ozone.api.model.ReadOnlyList
@Serializable
public data class FindRelatedAccountsQueryParams(
public val did: Did,
public val cursor: String? = null,
public val limit: Long? = 50,
) {
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(): ReadOnlyList> = buildList {
add("did" to did)
add("cursor" to cursor)
add("limit" to limit)
}.toImmutableList()
}
@Serializable
public data class FindRelatedAccountsResponse(
public val cursor: String? = null,
public val accounts: ReadOnlyList,
)