EntranceMessage

data class EntranceMessage(val id: String, val deviceId: String, val customName: String, val isAdmin: Boolean) : Parcelable

Represents an entrance message.

Constructors

Link copied to clipboard
constructor(id: String, deviceId: String, customName: String, isAdmin: Boolean)

Properties

Link copied to clipboard
@SerializedName(value = "custom_name")
val customName: String

Custom name of the user who sent the entrance message.

Link copied to clipboard
@SerializedName(value = "device_id")
val deviceId: String

Device ID of the user who sent the entrance message.

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

Unique identifier for the entrance message.

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

Indicates if the user who sent the entrance message is an admin.

Functions

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