Represents the device associated with a node.

interface ESPRMDeviceInterface {
    attributes?: ESPRMAttributeInterface[];
    displayName: string;
    name: string;
    params?: ESPRMDeviceParamInterface[];
    primaryParam?: ESPRMDeviceParamInterface;
    type: string;
}

Implemented by

Properties

displayName: string
name: string
type: string