# SENTCallWhileMovingEvent

{% hint style="warning" %}
This type was deprecated in v6.20.0 in favor of [CallEvent](https://docs.sentiance.com/important-topics/sdk/api-reference/ios/driving-insights/callevent).
{% endhint %}

```objectivec
SWIFT_CLASS_NAMED("CallWhileMovingEvent")
@interface SENTCallWhileMovingEvent : SENTDrivingEvent
```

## SENTCallWhileMovingEvent API

### `startDate`

> The start date of the event.
>
> ```objectivec
> @property (nonatomic, readonly, strong) SENTDate * _Nonnull startDate;
> ```

### `endDate`

> The end date of the event.
>
> ```objectivec
> @property (nonatomic, readonly, strong) SENTDate * _Nonnull endDate;
> ```

### `minTraveledSpeedInMps`

> The minimum speed traveled during the call, in meters per second.
>
> ```objectivec
> @property (nonatomic, readonly, strong) NSNumber * _Nullable minTraveledSpeedInMps;
> ```

### `maxTraveledSpeedInMps`

> The maximum speed traveled during the call, in meters per second.
>
> ```objectivec
> @property (nonatomic, readonly, strong) NSNumber * _Nullable maxTraveledSpeedInMps;
> ```

### `waypoints`

> Transport waypoints that indicate the segment of the transport where the event occurred.
>
> ```objectivec
> @property (nonatomic, readonly, strong) NSArray<SENTWaypoint *> * waypoints;
> ```
