@akamai/openapi-ts
    Preparing search index...

    Type Alias PaginationEnvelope

    An envelope for paginated response. When accessing a collection through a GET endpoint, the results are wrapped in this envelope which includes metadata about those results. Results are presented within a data array. See Pagination for more information.

    type PaginationEnvelope = {
        page?: number;
        pages?: number;
        results?: number;
    }
    Index

    Properties

    Properties

    page?: number

    Read-only The current page.

    pages?: number

    Read-only The total number of pages.

    results?: number

    Read-only The total number of results.