PageInfo
Stay organized with collections
Save and categorize content based on your preferences.
Contains details about the total number of results for an API response as well as the number of results returned in the response.
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-20 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 2025-08-20 UTC."],[[["\u003cp\u003eThe API response includes details on the total number of results available.\u003c/p\u003e\n"],["\u003cp\u003eThe response specifies the number of results included in the current page of the API response.\u003c/p\u003e\n"],["\u003cp\u003eThe starting index of the first item within the response is provided in the response.\u003c/p\u003e\n"],["\u003cp\u003eThe information is represented in a JSON format with three integer fields, totalResults, resultsPerPage, and startIndex.\u003c/p\u003e\n"]]],["The content describes a JSON structure used in API responses. This structure includes three key fields: `totalResults`, an integer representing the total number of results; `resultsPerPage`, an integer indicating the number of results included in the current response; and `startIndex`, an integer specifying the index of the first item within the response. This allows for information on pagination and the scope of the data.\n"],null,["# PageInfo\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nContains details about the total number of results for an API response as well as the number of results returned in the response.\n\n| JSON representation |\n|---------------------------------------------------------------------------------------|\n| ``` { \"totalResults\": integer, \"resultsPerPage\": integer, \"startIndex\": integer } ``` |\n\n| Fields ||\n|------------------|---------------------------------------------------------------|\n| `totalResults` | `integer` The total number of results in the result set. |\n| `resultsPerPage` | `integer` The number of results included in the API response. |\n| `startIndex` | `integer` The index of the first item in the API response. |"]]