# SpeedingEvent

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.

## SpeedingEvent API

### `getEndTime()`

> ```java
> DateTime getEndTime()
> ```
>
> Returns the end date and time of occurrence of the event.

### `getStartTime()`

> ```java
> DateTime getStartTime()
> ```
>
> Returns the start date and time of occurrence of the event.

### `getWaypoints()`

> ```java
> List<Waypoint> getWaypoints()
> ```
>
> Returns a list of transport waypoints that capture the speeding, where each individual waypoint contains the transport speed and speed limit information at the given waypoint location.
