Event

public struct Event : Equatable, CodableModel

Event

  • id

    Event id, eg. 2113-bitcoin-conference

    Declaration

    Swift

    public let id: String
  • Event name, eg. Bitcoin Conference

    Declaration

    Swift

    public let name: String
  • Declaration

    Swift

    public let description: String
  • Event start date

    Declaration

    Swift

    public let date: Date
  • Event end date

    Declaration

    Swift

    public let dateTo: Date?
  • Is it conference

    Declaration

    Swift

    public let isConference: Bool
  • Event link

    Declaration

    Swift

    public let link: URL?
  • Proof image

    Declaration

    Swift

    public let proofImageLink: URL?