A dto representing custom options for a device.

DeviceOptionsDto

interface DeviceOptionsDto {
    CustomName?: null | string;
    DeviceId?: null | string;
    Id?: number;
}

Properties

CustomName?: null | string

Gets or sets the custom name.

DeviceOptionsDto

DeviceId?: null | string

Gets or sets the device id.

DeviceOptionsDto

Id?: number

Gets or sets the id.

DeviceOptionsDto