Category

public struct Category : Codable, Equatable

Struct representing Reward Category related values.

  • id

    Value representing the entity id.

    Declaration

    Swift

    public var id: Int
  • Image URL of the reward category.

    Declaration

    Swift

    public var imageUrl: String
  • key

    The reward category key.

    Declaration

    Swift

    public var key: String
  • The reward category label.

    Declaration

    Swift

    public var label: String
  • Thumbnail URL of the reward category.

    Declaration

    Swift

    public var thumbImageUrl: String
  • Undocumented

    Declaration

    Swift

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

    Swift

    public init(from decoder: Decoder) throws