OpenGraphImage

@Serializable
data class OpenGraphImage(var url: String, var width: Int? = null, var height: Int? = null, var alt: String? = null)(source)

Represents an Open Graph image with optional width, height, and alt text.

Constructors

Link copied to clipboard
constructor(url: String, width: Int? = null, height: Int? = null, alt: String? = null)

Properties

Link copied to clipboard
var alt: String?
Link copied to clipboard
var height: Int?
Link copied to clipboard
var url: String
Link copied to clipboard
var width: Int?