SENTSpeedingEvent

This class is part of an Early Access feature, and is subject to change in the future.

An event that represents a period of time where speeding was observed.

A speeding event is based on the speed and speed limit information of individual waypoints. These waypoints are accessible from this speeding event.

SWIFT_CLASS_NAMED("SpeedingEvent")
@interface SENTSpeedingEvent : SENTDrivingEvent

SENTSpeedingEvent API

startDate

The start date of the event.

@property (nonatomic, readonly, strong) SENTDate * _Nonnull startDate;

endDate

The end date of the event.

@property (nonatomic, readonly, strong) SENTDate * _Nonnull endDate;

waypoints

The transport waypoints that capture the speeding, where each waypoint contains the transport speed and speed limit information at the given waypoint location.

@property (nonatomic, readonly, strong) NSArray<SENTWaypoint> * _Nonnull waypoints;

Last updated