CameraChangedEventData

The data class for camera-changed event data in Observer

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

Constructors

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

Functions

component1
Link copied to clipboard
operator fun component1(): Long
component2
Link copied to clipboard
operator fun component2(): Long?
copy
Link copied to clipboard
fun copy(begin: Long, end: Long?): CameraChangedEventData
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?