gRPC-based APIs use an empty string as a "no page token", whereas REST-based APIs
use a null reference instead. The value here will be consistent with the value returned
by the API itself.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-04 UTC."],[[["The `Page\u003cTResource\u003e` class represents a page of resources, ensuring that results are only fewer than requested if no more data is available."],["This class implements `IEnumerable\u003cTResource\u003e` and `IEnumerable`, making it compatible with various iteration methods."],["The constructor `Page(IEnumerable\u003cTResource\u003e resources, string nextPageToken)` creates a fixed-size page from a sequence of resources and a page token."],["The `NextPageToken` property provides the token needed to fetch the subsequent set of resources, with gRPC APIs using an empty string for no token and REST APIs using a null reference."],["The `GetEnumerator()` method allows iteration over the resources within the page by providing an `IEnumerator\u003cTResource\u003e`."]]],[]]