Typescript SDK Type Docs
    Preparing search index...

    Interface PaginatedApplication

    Paginated result containing Application.

    interface PaginatedApplication {
        count: number;
        limit: number;
        offset: number;
        results: Application[];
        total: number;
    }
    Index

    Properties

    count: number

    Actual number of results returned.

    limit: number

    Number of results requested.

    offset: number

    Number of elements skipped.

    results: Application[]

    Applications matching the query.

    total: number

    Total number of results matching the query.