commonMain.chat.bsky.convo.getConvoForMembers.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 chat.bsky.convo
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.Did
import sh.christian.ozone.api.model.ReadOnlyList
@Serializable
public data class GetConvoForMembersQueryParams(
public val members: ReadOnlyList,
) {
init {
require(members.count() >= 1) {
"members.count() must be >= 1, but was ${members.count()}"
}
require(members.count() <= 10) {
"members.count() must be <= 10, but was ${members.count()}"
}
}
public fun asList(): ReadOnlyList> = buildList {
members.forEach {
add("members" to it)
}
}.toImmutableList()
}
@Serializable
public data class GetConvoForMembersResponse(
public val convo: ConvoView,
)