PageNavigationLinks Data Type

Navigation links for paginated REST responses.

Each field contains an absolute URL pointing to the respective page. Fields are null when the corresponding page does not exist (e.g. next on the last page, previous on the first page).

  • self – URL of the current page.
  • first – URL of the first page.
  • last – URL of the last page.
  • next – URL of the next page. null if this is already the last page.
  • previous – URL of the previous page. null if this is already the first page.

Properties
name data type description
self string URL of the current page.
first string URL of the first page (offset = 0).
last string URL of the last page.
next string URL of the next page. null if the current page is already the last page.
previous string URL of the previous page. null if the current page is already the first page.

Example

{
  "self" : "...",
  "first" : "...",
  "last" : "...",
  "next" : "...",
  "previous" : "..."
}