MTData

@Serializable
data class MTData(val id: String? = null, val coordinate: LngLat? = null, val point: MTPoint? = null, val dataType: String? = null, val isSourceLoaded: Boolean? = null, val source: MTSourceData? = null, val sourceDataType: String? = null)

Object sent together with MTEvent.

Constructors

constructor(id: String? = null, coordinate: LngLat? = null, point: MTPoint? = null, dataType: String? = null, isSourceLoaded: Boolean? = null, source: MTSourceData? = null, sourceDataType: String? = null)

Properties

@SerialName(value = "lngLat")
val coordinate: LngLat? = null

Coordinate of the event tap.

val dataType: String? = null

Type of the event.

val id: String? = null

Unique id.

val isSourceLoaded: Boolean? = null

Boolean indicating if source is fully loaded.

val point: MTPoint? = null

Point of the event tap.

val source: MTSourceData? = null

Source data.

val sourceDataType: String? = null

Type of the source data.