Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Feature(val type: String? = null, val properties: Map<String, String>? = null, val geometry: Point? = null)

GeoJSON Feature representing the vehicle location.

Link copied to clipboard
@Serializable
data class LocationResponse(val status: Int? = null, val operationId: String? = null, val data: Feature? = null)

Vehicle location response.

Link copied to clipboard
@Serializable
data class Point(val type: String? = null, val coordinates: List<Double>? = null)

GeoJSON Point geometry.