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."],[[["Version 3.2.0 of the `Google.Api.Gax` library includes the `Page\u003cTResource\u003e` class, which represents a page of resources that may have fewer results than requested if no further data is available."],["The `Page\u003cTResource\u003e` class inherits from `Object` and implements the `IEnumerable\u003cTResource\u003e` and `IEnumerable` interfaces, enabling it to be used in `foreach` loops and other iteration scenarios."],["The `Page\u003cTResource\u003e` class has a constructor that accepts an `IEnumerable\u003cTResource\u003e` of resources and a `string` representing the next page token, which is used to fetch subsequent pages."],["The `NextPageToken` property provides the token to retrieve the next page of resources, with the distinction that gRPC APIs return an empty string for no token, while REST APIs return a null reference."],["The class `Page\u003cTResource\u003e` exposes methods `GetEnumerator()` to facilitate the enumeration of resources within the page, catering to both generic and non-generic enumeration requirements."]]],[]]