Represents the parameter of a node service

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

Hierarchy (View Summary)

Implemented by

Properties

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