TokenPagination
Stay organized with collections
Save and categorize content based on your preferences.
Pagination information returned by a List operation when token pagination is enabled.
List operations that supports paging return only one "page" of results. This protocol buffer message describes the page that has been returned.
When using token pagination, clients should use the next/previous token to get another page of the result. The presence or absence of next/previous token indicates whether a next/previous page is available and provides a mean of accessing this page. ListRequest.page_token should be set to either nextPageToken or previousPageToken to access another page.
JSON representation |
{
"nextPageToken": string,
"previousPageToken": string
} |
Fields |
nextPageToken |
string
Tokens to pass to the standard list field 'pageToken'. Whenever available, tokens are preferred over manipulating startIndex.
|
previousPageToken |
string
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-08-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-21 UTC."],[[["This document explains the structure of pagination information returned for list operations that support paging when token pagination is enabled."],["Clients should utilize the `nextPageToken` or `previousPageToken` to navigate between pages of results."],["The presence or absence of these tokens indicates the availability of additional pages."],["The JSON representation of this pagination information includes `nextPageToken` and `previousPageToken` fields as strings."]]],[]]