Device

data class Device(    val deviceId: String?,     val type: String,     val manufacturer: String,     val model: String)

Device information

Constructors

Link copied to clipboard
fun Device(    deviceId: String?,     type: String,     manufacturer: String,     model: String)

Properties

Link copied to clipboard
val deviceId: String?

Device identifier

Link copied to clipboard
val manufacturer: String

Manufacturer of the device

Link copied to clipboard
val model: String

Model of the device

Link copied to clipboard
val type: String

Type of the device: iPad, iPhone, datalogger, etc.