SENTTimelineEvent
Last updated
The duration of the event, in seconds. When unknown, this will be equal to SENTDurationUnknown.
var durationInSeconds: IntThe unique identifier of the event.
var eventId: StringThe end date of the event, if it has ended. Otherwise, nil.
var endDate: SENTDate?Indicates whether the event has ended.
var hasEnded: BoolIndicates whether the event is provisional.
A provisional event is identified based on real-time detections, but may change in the near future as more data is collected and processed, to filter out unwanted artifacts. For example, a provisional car transport may get identified, followed by a provisional bus transport. After the full trip is complete, these provisional events may get merged into a single final car event.
Final events are generated independently of the provisional events, and have unique event IDs. They are not linked to the provisional events they may resemble, replace, or overlap with.
Currently, provisional events apply only to 'transport' types, as the SDK tries to determine the mode of transport in (near) real time. When the full trip is complete (e.g. the user becomes stationary), the collected data is reprocessed to produce a more accurate and cleaned up list of transport events.
The date when the event was last updated.
The start date of the event.
The event type. Based on this type, you can cast an event to the corresponding event class (e.g. SENTTransportEvent, SENTStationaryEvent) to access type specific properties. See SENTTimelineEventType.
Last updated
var isProvisional: Boolvar lastUpdateDate: SENTDatevar startDate: SENTDatevar type: SENTTimelineEventType