A request to list objects in an index. You can specify a number of
restrictions, such as the number of objects to return, the id of the
first object to return, whether to only return keys, etc.
[[["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-03-05 UTC."],[[["`GetRequest` is used to list objects in an index, allowing for restrictions like the number of objects to return and the ID of the first object."],["You can set specific parameters when building a `GetRequest` object, like limiting the number of results, defining a starting ID, and indicating if only IDs should be returned, as shown with the `.setLimit()`, `.setStartId()`, and `.setReturningIdsOnly()` methods."],["`GetRequest` inherits several methods from the `Object` class, including `clone()`, `equals()`, `hashCode()`, `toString()`, and `wait()` among others."],["Static methods `newBuilder()` allow for creating a `GetRequest.Builder` object, either from scratch or based on an existing `GetRequest` instance."],["The `GetRequest` object contains methods such as `getLimit()`, `getStartId()`, `isIncludeStart()`, and `isReturningIdsOnly()` which allows for retrieving the request configurations."]]],[]]