The PaginationMeta object contains cursor-based pagination information for navigating through paginated responses.
| Field | Type | Description |
|---|---|---|
nextCursor | string | null | Cursor for the next page. Use this in the cursor query parameter to fetch the next page. Will be null if there are no more pages. |
prevCursor | string | null | Cursor for the previous page. Use this in the cursor query parameter to fetch the previous page. Will be null if this is the first page. |
hasMore | boolean | Whether more pages are available. This is true when nextCursor is not null. |
nextCursor from the response to fetch the next pageprevCursor to navigate backwardshasMore to determine if there are additional pages