ReplaySetRoute

data class ReplaySetRoute(eventTimestamp: Double, 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

ReplaySetRoute
Link copied to clipboard
fun ReplaySetRoute(eventTimestamp: Double, route: DirectionsRoute?)
timestamp of event in seconds

Functions

component1
Link copied to clipboard
operator fun component1(): Double
component2
Link copied to clipboard
operator fun component2(): DirectionsRoute?
copy
Link copied to clipboard
fun copy(eventTimestamp: Double, route: DirectionsRoute?): ReplaySetRoute
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

eventTimestamp
Link copied to clipboard
@SerializedName(value = "event_timestamp")
open override val eventTimestamp: Double
timestamp of event in seconds
route
Link copied to clipboard
@SerializedName(value = "route")
val route: DirectionsRoute?
DirectionsRoute the route that was set, null when it has been cleared