Amazon Selling Partner API (SP-API) SDK for TypeScript
    Preparing search index...

    The process of returning the results to a request in batches of a defined size called pages. This is done to exercise some control over result size and overall throughput. It's a form of traffic management.

    interface Pagination {
        nextToken?: string;
    }
    Index
    nextToken?: string

    A generated string used to retrieve the next page of the result. If nextToken is returned, pass the value of nextToken to the next request. If nextToken is not returned, there are no more items to return.