All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.app.bsky.feed.getPosts.kt Maven / Gradle / Ivy

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,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy