MapIdleEventData

data class MapIdleEventData(begin: Long, end: Long?)

The data class for map-idle event data in Observer

Constructors

MapIdleEventData
Link copied to clipboard
fun MapIdleEventData(begin: Long, end: Long?)

Properties

begin
Link copied to clipboard
@SerializedName(value = begin)
val begin: Long
Representing timestamp taken at the time of an event creation, in microseconds, since the epoch.
end
Link copied to clipboard
@SerializedName(value = end)
val end: Long?
For an interval events, an optional end property will be present that represents timestamp taken at the time of an event completion.