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

    Interface ESPCDFPaginatedAutomationsResponse

    Interface for paginated response containing automation data.

    interface ESPCDFPaginatedAutomationsResponse {
        automations: ESPCDFAutomation[];
        fetchNext?: () => Promise<ESPCDFPaginatedAutomationsResponse>;
        hasNext: boolean;
    }
    Index

    Properties

    automations: ESPCDFAutomation[]
    fetchNext?: () => Promise<ESPCDFPaginatedAutomationsResponse>
    hasNext: boolean