commonMain.app.bsky.richtext.facetMention.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluesky-jvm Show documentation
Show all versions of bluesky-jvm Show documentation
Bluesky Social API bindings for Kotlin.
The newest version!
@file:Suppress("DEPRECATION")
package app.bsky.richtext
import kotlin.Suppress
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.Did
/**
* Facet feature for mention of another account. The text is usually a handle, including a '@'
* prefix, but the facet reference is a DID.
*/
@Serializable
public data class FacetMention(
public val did: Did,
)