@espressif/rainmaker-base-cdf
    Preparing search index...

    Interface ESPCDFParamInterface

    Base param interface with common fields shared by device and service params. DeviceParam and ServiceParam extend this with their specific properties.

    interface ESPCDFParamInterface {
        _raw: any;
        bounds?: Record<string, any>;
        dataType?: string;
        name: string;
        operations: ESPCDFParamOperation;
        properties?: string[];
        type?: string;
        value?: any;
    }

    Hierarchy (View Summary)

    Index

    Properties

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