commonMain.app.bsky.feed.getPosts.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluesky-jvm Show documentation
Show all versions of bluesky-jvm Show documentation
Bluesky Social API bindings for Kotlin.
The newest version!
@file:Suppress("DEPRECATION")
package app.bsky.feed
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
/**
* @param uris List of post AT-URIs to return hydrated views for.
*/
@Serializable
public data class GetPostsQueryParams(
/**
* List of post AT-URIs to return hydrated views for.
*/
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 GetPostsResponse(
public val posts: ReadOnlyList,
)