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

    Interface ESPCDFPaginatedAPIResponse<RESPONSE_DATA>

    interface ESPCDFPaginatedAPIResponse<RESPONSE_DATA = any> {
        data: RESPONSE_DATA;
        description?: string;
        pagination: {
            fetchNext?: () => Promise<ESPCDFPaginatedAPIResponse<RESPONSE_DATA>>;
            hasNext: boolean;
        };
        status: string;
    }

    Type Parameters

    • RESPONSE_DATA = any

    Hierarchy (View Summary)

    Index

    Properties

    description?: string
    pagination: {
        fetchNext?: () => Promise<ESPCDFPaginatedAPIResponse<RESPONSE_DATA>>;
        hasNext: boolean;
    }
    status: string