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?
  • 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

    name

    The name of this author.

    iconUrl

    The iconUrl for this author’s icon.

    url

    The url for this author.