ViewerCount

data class ViewerCount(val count: Int, val timestampUpdatedAt: String? = null) : Parcelable

Represents viewer count.

Constructors

Link copied to clipboard
constructor(count: Int, timestampUpdatedAt: String? = null)

Properties

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

Number of viewers.

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

Timestamp when the viewer count was last updated.

Functions

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