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

    Variable paginationEnvelopeSchemaConst

    paginationEnvelopeSchema: ZodObject<
        {
            page: ZodOptional<ZodReadonly<ZodInt>>;
            pages: ZodOptional<ZodReadonly<ZodInt>>;
            results: ZodOptional<ZodReadonly<ZodInt>>;
        },
        $strip,
    > = ...

    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.