USBDevice Object
configurationObject (optional) - A USBConfiguration object containing information about the currently selected configuration of a USB device.configurationValueInteger - the configuration value of this configuration.configurationNamestring - the name provided by the device to describe this configuration.interfacesObject[] - An array of USBInterface objects containing information about an interface provided by the USB device.interfaceNumberInteger - the interface number of this interface.alternateObject - the currently selected alternative configuration of this interface.alternateSettingInteger - the alternate setting number of this interface.interfaceClassInteger - the class of this interface. See USB.org for class code descriptions.interfaceSubclassInteger - the subclass of this interface.interfaceProtocolInteger - the protocol supported by this interface.interfaceNamestring (optional) - the name of the interface, if one is provided by the device.endpointsObject[] - an array containing instances of the USBEndpoint interface describing each of the endpoints that are part of this interface.endpointNumberInteger - this endpoint's "endpoint number" which is a value from 1 to 15.directionstring - the direction in which this endpoint transfers data - can be either 'in' or 'out'.typestring - the type of this endpoint - can be either 'bulk', 'interrupt', or 'isochronous'.packetSizeInteger - the size of the packets that data sent through this endpoint will be divided into.
alternatesObject[] - an array containing instances of the USBAlternateInterface interface describing each of the alternative configurations possible for this interface.
configurationsObject[] - An array of USBConfiguration interfaces for controlling a paired USB device.deviceClassInteger - The device class for the communication interface supported by the device.deviceIdstring - Unique identifier for the device.deviceProtocolInteger - The device protocol for the communication interface supported by the device.deviceSubclassInteger - The device subclass for the communication interface supported by the device.deviceVersionMajorInteger - The major version number of the device as defined by the device manufacturer.deviceVersionMinorInteger - The minor version number of the device as defined by the device manufacturer.deviceVersionSubminorInteger - The subminor version number of the device as defined by the device manufacturer.manufacturerNamestring (optional) - The manufacturer name of the device.productIdInteger - The USB product ID.productNamestring (optional) - Name of the device.serialNumberstring (optional) - The USB device serial number.usbVersionMajorInteger - The USB protocol major version supported by the device.usbVersionMinorInteger - The USB protocol minor version supported by the device.usbVersionSubminorInteger - The USB protocol subminor version supported by the device.vendorIdInteger - The USB vendor ID.