commonMain.app.bsky.actor.ViewerState.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.actor
import app.bsky.graph.ListViewBasic
import kotlin.Boolean
import kotlin.Suppress
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.AtUri
/**
* Metadata about the requesting account's relationship with the subject account. Only has
* meaningful content for authed requests.
*/
@Serializable
public data class ViewerState(
public val muted: Boolean? = null,
public val mutedByList: ListViewBasic? = null,
public val blockedBy: Boolean? = null,
public val blocking: AtUri? = null,
public val blockingByList: ListViewBasic? = null,
public val following: AtUri? = null,
public val followedBy: AtUri? = null,
public val knownFollowers: KnownFollowers? = null,
)