Pagination
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-25 (世界標準時間)。
[null,null,["上次更新時間:2025-07-25 (世界標準時間)。"],[[["\u003cp\u003eThis document outlines the JSON representation used for pagination within Google Wallet objects.\u003c/p\u003e\n"],["\u003cp\u003eThe representation includes fields for identifying the resource type (deprecated), number of results per page, and a token for accessing the next page.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers should be aware that the \u003ccode\u003ekind\u003c/code\u003e field is deprecated and may be removed in the future.\u003c/p\u003e\n"]]],["The JSON structure defines a pagination object with three fields. `kind` (deprecated) is a string identifying the resource type. `resultsPerPage`, an integer, specifies the number of results on the current page. `nextPageToken`, a string, provides the token needed to retrieve the subsequent page of results. This structure facilitates the division and navigation of large datasets.\n"],null,["# Pagination\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\n| JSON representation |\n|--------------------------------------------------------------------------------|\n| ``` { \"kind\": string, \"resultsPerPage\": integer, \"nextPageToken\": string } ``` |\n\n| Fields ||\n|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------|\n| `kind` **(deprecated)** | `string` | This item is deprecated! Identifies what kind of resource this is. Value: the fixed string `\"walletobjects#pagination\"`. |\n| `resultsPerPage` | `integer` Number of results returned in this page. |\n| `nextPageToken` | `string` Page token to send to fetch the next page. |"]]