ReplannedRoute

data class ReplannedRoute(    val route: Route,     val replanningReason: RouteReplanningReason,     val creationTime: Long)

Describes the route after replanning.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

route

The replanned route.

replanningReason

The reason why the route was replanned.

creationTime

Creation time of the route in milliseconds.

Constructors

Link copied to clipboard
fun ReplannedRoute(    route: Route,     replanningReason: RouteReplanningReason,     creationTime: Long)

Properties

Link copied to clipboard
val creationTime: Long
Link copied to clipboard
val replanningReason: RouteReplanningReason
Link copied to clipboard
val route: Route