Pagination
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[[["\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. |"]]