PageMeta
Pagination metadata for list responses. Supports both offset and cursor pagination.
- objectType: stringenum
Pagination type: "offset" or "cursor"
values- offset
- cursor
- cursorType: string
Current cursor position (cursor pagination only)
- nextType: string
_cursor Cursor for fetching the next page (cursor pagination only)
- prevType: string
_cursor Cursor for fetching the previous page (cursor pagination only)
- pageType: integer
Current page number, 1-indexed (offset pagination only)
- totalType: integer
_pages Total number of pages (offset pagination only)
- totalType: integer
_items Total number of items across all pages
- limitType: integer
Maximum number of items per page
- hasType: boolean
_next Whether more items exist after the current page
- hasType: boolean
_prev Whether more items exist before the current page
- directionType: stringenum
Navigation direction: "next" or "previous"
values- next
- previous