ViewerInfo

data class ViewerInfo(val enabled: Boolean, val count: Int, val versionNumber: String, val timestampUpdatedAt: String, val unixTimestampUpdatedAt: Long) : Parcelable

Represents information about viewers.

Constructors

Link copied to clipboard
constructor(enabled: Boolean, count: Int, versionNumber: String, timestampUpdatedAt: String, unixTimestampUpdatedAt: Long)

Properties

Link copied to clipboard
@SerializedName(value = "count")
val count: Int

Number of viewers.

Link copied to clipboard
@SerializedName(value = "enabled")
val enabled: Boolean

Indicates if viewer info is enabled.

Link copied to clipboard
@SerializedName(value = "updated_at")
val timestampUpdatedAt: String

Timestamp when the information was last updated.

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

Unix timestamp when the information was last updated.

Link copied to clipboard
@SerializedName(value = "version_number")
val versionNumber: String

Version number.

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)