Self

data class Self(val isAdmin: Boolean = false, val isGuest: Boolean = false, val customerId: String = "", val deviceId: String = "", val customName: String = "")

Constructors

Link copied to clipboard
constructor(isAdmin: Boolean = false, isGuest: Boolean = false, customerId: String = "", deviceId: String = "", customName: String = "")

Properties

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

The identifier of the customer.

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

The name of the customer.

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

The identifier of the device.

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

Indicates the user whether or not an admin

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

Indicates the user whether or not a guest