commonMain.app.bsky.feed.getAuthorFeed.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.feed
import kotlin.Any
import kotlin.Boolean
import kotlin.Long
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.AtIdentifier
/**
* @param filter Combinations of post/repost types to include in response.
*/
@Serializable
public data class GetAuthorFeedQueryParams(
public val actor: AtIdentifier,
public val limit: Long? = 50,
public val cursor: String? = null,
/**
* Combinations of post/repost types to include in response.
*/
public val filter: GetAuthorFeedFilter? = GetAuthorFeedFilter.PostsWithReplies,
public val includePins: Boolean? = false,
) {
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(): List> = buildList {
add("actor" to actor)
add("limit" to limit)
add("cursor" to cursor)
add("filter" to filter)
add("includePins" to includePins)
}
}
@Serializable
public data class GetAuthorFeedResponse(
public val cursor: String? = null,
public val feed: List,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy