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 fewer results are returned only if no more data is available to fetch."],["This class implements `IEnumerable\u003cTResource\u003e` and `IEnumerable`, allowing iteration over the resources within the page."],["The `Page\u003cTResource\u003e` class includes a constructor that takes an `IEnumerable\u003cTResource\u003e` for resources and a string for the `nextPageToken`, facilitating the creation of a page from a resource sequence."],["The `NextPageToken` property provides a string to retrieve the next page of resources, with a notable difference in how gRPC (empty string) and REST (null reference) APIs handle the absence of a token."],["The page class has methods GetEnumerator() to make it easy to get the resources within the page."]]],[]]