Sender

data class Sender(val customName: String, val deviceId: String, val id: String) : Parcelable

Represents the sender of a message.

Constructors

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

Properties

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

Custom name of the sender.

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

Device ID of the sender.

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

Unique identifier for the sender.

Functions

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