OGImage
@objc(SBDOGImage)
public final class OGImage : NSObject, Codable
Represents OpenGraph Image information
Since
3.0.193-
Optional an image url
Declaration
Swift
@objc public let url: String?
-
Optional an alternate url to use if the webpage requires HTTPS
Declaration
Swift
@objc public let secureURL: String?
-
Optional a MIME type for this image
Declaration
Swift
@objc public let type: String?
-
Optional description of what is in the image (not a caption). If the page specifies an og:image it should specify this property
Declaration
Swift
@objc public let alt: String?
-
Optional number of pixels wide, 0 if not provided
Declaration
Swift
@objc public let width: Int
-
Optional number of pixels high, 0 if not provided
Declaration
Swift
@objc public let height: Int
-
Declaration
Swift
public required init(from decoder: Decoder) throws