InlineRegistryCredentialList0

InlineRegistryCredentialList0
InlineRegistryCredentialList0

Pagination is a technique used to divide a large set of results into smaller, more manageable sets. This allows clients to retrieve results in smaller chunks, reducing the amount of data transferred and improving performance. The pagination object is a JSON object that contains information about the pagination state of the results. It includes the total number of results available, the total number of pages available, and links to the first, last, next, and previous pages of results.

JSON Example
{
    "total_results": 0,
    "total_pages": 0,
    "first": {
        "href": "string",
        "method": "string"
    },
    "last": {
        "href": "string",
        "method": "string"
    },
    "next": {
        "href": "string",
        "method": "string"
    },
    "previous": {
        "href": "string",
        "method": "string"
    }
}
integer
total_results
Optional

The total number of results available

integer
total_pages
Optional

The total number of pages available

first
Optional

first

last
Optional

last

next
Optional

The next page of results

previous
Optional

The previous page of results