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

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

The newest version!
@file:Suppress("DEPRECATION")

package app.bsky.feed

import app.bsky.actor.ProfileView
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.AtUri
import sh.christian.ozone.api.Cid
import sh.christian.ozone.api.model.ReadOnlyList

/**
 * @param uri Reference (AT-URI) of post record
 * @param cid If supplied, filters to reposts of specific version (by CID) of the post record.
 */
@Serializable
public data class GetRepostedByQueryParams(
  /**
   * Reference (AT-URI) of post record
   */
  public val uri: AtUri,
  /**
   * If supplied, filters to reposts of specific version (by CID) of the post record.
   */
  public val cid: Cid? = null,
  public val limit: Long? = 50,
  public val cursor: String? = null,
) {
  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("uri" to uri)
    add("cid" to cid)
    add("limit" to limit)
    add("cursor" to cursor)
  }.toImmutableList()
}

@Serializable
public data class GetRepostedByResponse(
  public val uri: AtUri,
  public val cid: Cid? = null,
  public val cursor: String? = null,
  public val repostedBy: ReadOnlyList,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy