GiftCardType

public struct GiftCardType : Codable, Equatable

Struct representing Gift Card Type related values.

  • id

    Value representing the entity id.

    Declaration

    Swift

    public var id: Int
  • Display label of gift card type.

    Declaration

    Swift

    public var label: String
  • Image url of gift card type.

    Declaration

    Swift

    public var imageUrl: String
  • Url of thumbnail image of gift card type.

    Declaration

    Swift

    public var thumbImageUrl: String
  • Url of original image of gift card type.

    Declaration

    Swift

    public var originalImageUrl: String
  • Undocumented

    Declaration

    Swift

    public init(id: Int, label: String, imageUrl: String,
                thumbImageUrl: String, originalImageUrl: String)
  • Declaration

    Swift

    public init(from decoder: Decoder) throws