commonMain.app.bsky.feed.ThreadgateView.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 app.bsky.graph.ListViewBasic
import kotlin.Suppress
import kotlinx.collections.immutable.persistentListOf
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.AtUri
import sh.christian.ozone.api.Cid
import sh.christian.ozone.api.model.JsonContent
import sh.christian.ozone.api.model.ReadOnlyList
@Serializable
public data class ThreadgateView(
public val uri: AtUri? = null,
public val cid: Cid? = null,
public val record: JsonContent? = null,
public val lists: ReadOnlyList = persistentListOf(),
)