Interface that provides information about the device.

interface IDeviceInfo {
    get deviceID(): string;
    get productID(): number;
    get productName(): string;
    get serialNumber(): string;
}

Accessors

  • get deviceID(): string
  • The device ID of the device.

    Returns string

  • get productID(): number
  • The product ID of the device.

    Returns number

  • get productName(): string
  • The product name of the device.

    Returns string

  • get serialNumber(): string
  • The serial number of the device.

    Returns string

Generated using TypeDoc