LocationCoordinate

@Serializable
data class LocationCoordinate(val latitude: Double? = null, val longitude: Double? = null, val altitude: Double? = null, val timeStamp: Instant? = null)

Constructors

Link copied to clipboard
constructor(latitude: Double? = null, longitude: Double? = null, altitude: Double? = null, timeStamp: Instant? = null)

Properties

Link copied to clipboard
val altitude: Double? = null
Link copied to clipboard
val latitude: Double? = null
Link copied to clipboard
val longitude: Double? = null
Link copied to clipboard
val timeStamp: Instant? = null