Represents the parameter of a node device

interface ESPRMDeviceParamInterface {
    bounds?: Record<string, any>;
    dataType: string;
    deviceName: string;
    name: string;
    properties: string[];
    type: string;
    uiType?: string;
    validStrings?: string[];
    value?: any;
}

Hierarchy (View Summary)

Implemented by

Properties

bounds?: Record<string, any>
dataType: string
deviceName: string
name: string
properties: string[]
type: string
uiType?: string
validStrings?: string[]
value?: any