Interface iGetDynamicDataBinsSuccessResponse<Q>

interface iGetDynamicDataBinsSuccessResponse<Q> {
    docs: iDynamicDataDoc<Q>[];
    pagination: {
        bookmark: string;
        hasMore: boolean;
    };
}

Type Parameters

Implemented by

Properties

Properties

pagination: {
    bookmark: string;
    hasMore: boolean;
}