Trip

struct Trip : Codable

Should represent a continuous travel on public transport.

  • The date an time the tip started

    Declaration

    Swift

    var startDate: Date
  • The date an time the tip ended

    Declaration

    Swift

    var endDate: Date?
  • An array of locations captured durring the trip

    Declaration

    Swift

    var locations: [Location]