commonMain.app.bsky.embed.external.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.embed
import kotlin.Suppress
import kotlinx.serialization.Serializable
/**
* A representation of some externally linked content (eg, a URL and 'card'), embedded in a Bluesky
* record (eg, a post).
*/
@Serializable
public data class External(
public val `external`: ExternalExternal,
)