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

commonMain.app.bsky.feed.getFeedGenerators.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 kotlin.collections.List
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.AtUri

@Serializable
public data class GetFeedGeneratorsQueryParams(
  public val feeds: List,
) {
  public fun asList(): List> = buildList {
    feeds.forEach {
      add("feeds" to it)
    }
  }
}

@Serializable
public data class GetFeedGeneratorsResponse(
  public val feeds: List,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy