OpenGraphData

internal data class OpenGraphData(val title: String?, val type: String = "website", val url: String?, val description: String?, val imageUrls: List<String> = emptyList(), val siteName: String?)

Internal parsed Open Graph data structure.

Extracted from HTML meta tags but not persisted — used to build MessageLinkPreview.

Constructors

Link copied to clipboard
constructor(title: String?, type: String = "website", url: String?, description: String?, imageUrls: List<String> = emptyList(), siteName: String?)

Properties

Link copied to clipboard
val description: String?
Link copied to clipboard
val imageUrls: List<String>
Link copied to clipboard
val siteName: String?
Link copied to clipboard
val title: String?
Link copied to clipboard
val type: String
Link copied to clipboard
val url: String?