Base interface for parameter properties common to both device and service parameters.

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

Hierarchy (View Summary)

Properties

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