@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface PaginationResponse

    Standard cursor-based pagination metadata for list responses

    interface PaginationResponse {
        has_more: boolean;
        cursor?: string;
        total_count?: number;
    }
    Index

    Properties

    has_more: boolean

    Whether more results are available beyond this page

    cursor?: string

    Opaque cursor to pass in the next request to fetch the next page. Only present when has_more is true.

    total_count?: number

    Total number of items matching the query across all pages. Optional because not all backends can efficiently compute this.