ReplaySetRoute

data class ReplaySetRoute(val eventTimestamp: Double, val route: DirectionsRoute?) : ReplayEventBase

Route data for replaying when a route is set.

Parameters

eventTimestamp

timestamp of event in seconds

route

DirectionsRoute the route that was set, null when it has been cleared

Constructors

Link copied to clipboard
fun ReplaySetRoute(eventTimestamp: Double, route: DirectionsRoute?)

Properties

Link copied to clipboard
@SerializedName(value = "event_timestamp")
open override val eventTimestamp: Double
Link copied to clipboard
@SerializedName(value = "route")
val route: DirectionsRoute?