StyleDataLoadedEventData

The data class for style-data-loaded event data in Observer

data class StyleDataLoadedEventData(begin: Long, end: Long?, type: StyleDataType)

Constructors

StyleDataLoadedEventData
Link copied to clipboard
fun StyleDataLoadedEventData(begin: Long, end: Long?, type: StyleDataType)

Functions

component1
Link copied to clipboard
operator fun component1(): Long
component2
Link copied to clipboard
operator fun component2(): Long?
component3
Link copied to clipboard
operator fun component3(): StyleDataType
copy
Link copied to clipboard
fun copy(begin: Long, end: Long?, type: StyleDataType): StyleDataLoadedEventData
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

begin
Link copied to clipboard

Representing timestamp taken at the time of an event creation, in microseconds, since the epoch.

@SerializedName(value = "begin")
val begin: Long
end
Link copied to clipboard

For an interval events, an optional end property will be present that represents timestamp taken at the time of an event completion.

@SerializedName(value = "end")
val end: Long?
type
Link copied to clipboard

The 'type' property defines what kind of style data has been loaded.

@SerializedName(value = "type")
val type: StyleDataType