Interface PaginationInfo

Type for pagination information.

interface PaginationInfo {
    bookmark: string;
    hasMore: boolean;
}

Properties

Properties

bookmark: string

The bookmark for the next page of results. Obtained from previous response.

hasMore: boolean

Whether there are more results to fetch.