Interface IDevice

interface IDevice {
    device?: string;
    id: string;
    model?: string;
    path?: string;
    product?: string;
    state: DeviceState;
    transport: TransportType;
    transportId: string;
}

Implemented by

Properties

device?: string
id: string
model?: string
path?: string
product?: string
transport: TransportType
transportId: string