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

commonMain.app.bsky.unspecced.getPopularFeedGenerators.kt Maven / Gradle / Ivy

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

package app.bsky.unspecced

import app.bsky.feed.GeneratorView
import kotlin.Any
import kotlin.Long
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlinx.serialization.Serializable

@Serializable
public data class GetPopularFeedGeneratorsQueryParams(
  public val limit: Long? = 50,
  public val cursor: String? = null,
  public val query: 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(): List> = buildList {
    add("limit" to limit)
    add("cursor" to cursor)
    add("query" to query)
  }
}

@Serializable
public data class GetPopularFeedGeneratorsResponse(
  public val cursor: String? = null,
  public val feeds: List,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy