ActionTaker

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

Represents the user who took an action.

Constructors

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

Properties

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

Indicates if the action taker is blocked.

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

Custom name of the action taker.

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

Device ID of the action taker.

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

Unique identifier for the action taker.

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

Indicates if the action taker is an admin.

Functions

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