Location

data class Location(val postalCode: String? = null, val latitude: Float? = null, val longitude: Float? = null) : ReportingData

Represents reporting data payload related to user geographic location.

Constructors

Link copied to clipboard
constructor(postalCode: String? = null, latitude: Float? = null, longitude: Float? = null)

Properties

Link copied to clipboard
open override val data: MutableMap<String, Any>

The data payload container.

Link copied to clipboard
val latitude: Float? = null

The latitude of user location.

Link copied to clipboard
val longitude: Float? = null

The longitude of user location.

Link copied to clipboard
val postalCode: String? = null

The user postal code.