Device

@Serializable
data class Device(val id: String? = null, val type: String, val title: String = "", val description: String = "", val iconSrc: String = "", val default: Boolean = false)

Data class representing a Device.

Constructors

Link copied to clipboard
constructor(id: String? = null, type: String, title: String = "", description: String = "", iconSrc: String = "", default: Boolean = false)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val default: Boolean = false

Use this device as default.

Link copied to clipboard

The description of the device.

Link copied to clipboard

The icon source of the device.

Link copied to clipboard
val id: String? = null

The id of the device.

Link copied to clipboard

The title of the device.

Link copied to clipboard

The type of the device.