DeviceOptionsDto

@Serializable
data class DeviceOptionsDto(val id: Int, val deviceId: String? = null, val customName: String? = null)

A dto representing custom options for a device.

Constructors

Link copied to clipboard
constructor(id: Int, deviceId: String? = null, customName: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "CustomName")
val customName: String?

The custom name.

Link copied to clipboard
@SerialName(value = "DeviceId")
val deviceId: String?

The device id.

Link copied to clipboard
@SerialName(value = "Id")
val id: Int

The id.