Represents the configuration of a node.

interface ESPRMNodeConfigInterface {
    attributes?: ESPRMAttributeInterface[];
    configVersion: string;
    devices: ESPRMDeviceInterface[];
    info: ESPRMNodeInfoInterface;
    services?: ESPRMServiceInterface[];
}

Implemented by

Properties

configVersion: string