Interface iGetDynamicDataActivitySuccessResponse

interface iGetDynamicDataActivitySuccessResponse {
    history: {
        docs: {
            actions: any[];
            dynamicDataId: string;
            updatedAt: number;
        }[];
        pagination: {
            bookmark: string;
            hasMore: boolean;
        };
    };
    pending: {
        actions: any[];
        dynamicDataId: string;
        error: string;
        handlerId: string;
        lastFetchedAt: number;
        nextFetchTime: number;
        numRetries: number;
    }[];
}

Implemented by

Properties

Properties

history: {
    docs: {
        actions: any[];
        dynamicDataId: string;
        updatedAt: number;
    }[];
    pagination: {
        bookmark: string;
        hasMore: boolean;
    };
}
pending: {
    actions: any[];
    dynamicDataId: string;
    error: string;
    handlerId: string;
    lastFetchedAt: number;
    nextFetchTime: number;
    numRetries: number;
}[]