@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Interface PaginationResponse

    Cursor metadata for paginated get_products responses. In brief/refine mode, continuation pages bound returned products[] for the seller's curated or refined answer; proposals may accompany a page as plan metadata but are not independently counted by this pagination envelope, and pagination does not convert the response into an exhaustive feed contract. In wholesale mode, continuation pages walk the wholesale product feed.

    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.

    0