Author
public struct Author : Encodable
Represents an Embed’s author.
-
The name for this author.
Declaration
Swift
public var name: String -
The icon for this url.
Declaration
Swift
public var iconUrl: URL? -
The proxy url for the icon.
Declaration
Swift
public let proxyIconUrl: URL? -
The url of this author.
Declaration
Swift
public var url: URL? -
Creates an Author object.
Declaration
Swift
public init(name: String, iconUrl: URL? = nil, url: URL? = nil)Parameters
nameThe name of this author.
iconUrlThe iconUrl for this author’s icon.
urlThe url for this author.
Author Structure Reference