Values_1.ExtractedParameterSourceParameter extraction configuration that defines how to extract and map values from API responses to request parameters.
type nonrec t = {key : Values_0.ConnectorPropertyKey.t option;The parameter key name that will be used in subsequent requests.
*)defaultValue : DefaultValue.t option;The default value to use if the parameter cannot be extracted from the response.
*)propertyLocation : Values_0.PropertyLocation.t option;Specifies where this extracted parameter should be placed in subsequent requests, such as in headers, query parameters, or request body.
*)value : ResponseExtractionMapping.t option;The JSON path or extraction mapping that defines how to extract the parameter value from API responses.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Values_0.ConnectorPropertyKey.t
| `Structure of (string * [> `String of JsonPathString.t ]) list ])
list ]