ExpoFpDirection

@Serializable
data class ExpoFpDirection(val distance: String = "", val duration: Double = 0.0, val from: ExpoFpBooth? = null, val to: ExpoFpBooth? = null, val lines: List<ExpoFpLine> = emptyList())

Information about the built route.

Constructors

Link copied to clipboard
constructor(distance: String = "", duration: Double = 0.0, from: ExpoFpBooth? = null, to: ExpoFpBooth? = null, lines: List<ExpoFpLine> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "distance")
val distance: String

Route length information in meters. Example: "10m".

Link copied to clipboard
@SerialName(value = "time")
val duration: Double = 0.0

Estimated time to complete the route.

Link copied to clipboard
@SerialName(value = "from")
val from: ExpoFpBooth? = null

Start booth.

Link copied to clipboard
@SerialName(value = "lines")
val lines: List<ExpoFpLine>

Route lines.

Link copied to clipboard
@SerialName(value = "to")
val to: ExpoFpBooth? = null

End booth.