NavigationStats

data class NavigationStats(val totalDistance: Double? = null, val remainingDistance: Double? = null, val vehicles: List<StatsVehicles>? = null, val directions: List<Direction>? = null, val nextSteps: List<NavigationStep>? = null) : Parcelable

Constructors

Link copied to clipboard
constructor(totalDistance: Double? = null, remainingDistance: Double? = null, vehicles: List<StatsVehicles>? = null, directions: List<Direction>? = null, nextSteps: List<NavigationStep>? = null)

Properties

Link copied to clipboard
val directions: List<Direction>? = null

list of directions

Link copied to clipboard

list of next steps to show inside the app

Link copied to clipboard

number of meter from current navigation status to reach the destination

Link copied to clipboard
val totalDistance: Double? = null

number of meter of the actual navigation path

Link copied to clipboard

list of vehicles

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)