A request params extractor takes a request message, extracts specific field values from
it, converts them in strings and returns them as key-value pairs, where a key is a request field
name and a value is a string representation of a field value. Nested fields should also be
extractable, in such case the "dot notation" can be used to represent a nested field name, for
example "field_name.nested_field_name".
Implementations of this interface are expected to be autogenerated.
Extracts specific fields from the request and returns them in a form of key-value
pairs, where a key is a field name and a value is a field's string representation. To represent
nested field names the "dot notation" can be used.
[[["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-01 UTC."],[[["This webpage documents various versions of the `RequestParamsExtractor` interface, with version 2.63.1 being the latest."],["The `RequestParamsExtractor` interface is designed to extract specific field values from a request message and represent them as key-value pairs."],["Nested fields within the request message can also be extracted using the \"dot notation\" for representing their names, such as `\"field_name.nested_field_name\"`."],["The `extract(RequestT request)` method is the primary method of the interface, which takes a request message and returns a map of string key-value pairs representing the extracted fields."],["Implementations of the `RequestParamsExtractor` interface are intended to be automatically generated."]]],[]]