Category

public struct Category : Codable, Equatable

Struct representing Event Category related values.

  • id

    Value representing the entity id.

    Declaration

    Swift

    public var id: Int
  • Label of the category.

    Declaration

    Swift

    public var label: String
  • Name of the category.

    Declaration

    Swift

    public var name: String
  • key

    Key of the category.

    Declaration

    Swift

    public var key: String
  • Description of the category.

    Declaration

    Swift

    public var description: String
  • Image URL of the category.

    Declaration

    Swift

    public var imageUrl: String
  • Thumbnail URL of the category.

    Declaration

    Swift

    public var thumbnailUrl: String
  • Undocumented

    Declaration

    Swift

    public init(id: Int, label: String, name: String, key: String,
                description: String, imageUrl: String, thumbnailUrl: String)
  • Declaration

    Swift

    public init(from decoder: Decoder) throws