BrandLogo

public struct BrandLogo : Hashable

Represents image link to the company’s logo. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

  • URL from where the image data can be fetched.

    Declaration

    Swift

    public var fullsizeURL: String
  • URL from where a thumbnail of the image can be fetched, if available.

    Declaration

    Swift

    public var thumbnailURL: String?
  • Creates a new instance.

    Declaration

    Swift

    public init(fullsizeURL: String = "", thumbnailURL: String? = nil)