@maschinenlesbar.org/fragdenstaat-cli
    Preparing search index...

    Interface TastypieMeta

    Pagination/summary block on every Tastypie list response.

    interface TastypieMeta {
        limit: number;
        next: string | null;
        offset: number;
        previous: string | null;
        total_count: number;
    }
    Index
    limit: number
    next: string | null

    Absolute URL of the next page, or null on the last page.

    offset: number
    previous: string | null

    Absolute URL of the previous page, or null on the first page.

    total_count: number