Module Values_1.ExtractedParameterSource

Parameter extraction configuration that defines how to extract and map values from API responses to request parameters.

Sourcetype nonrec t = {
  1. key : Values_0.ConnectorPropertyKey.t option;
    (*

    The parameter key name that will be used in subsequent requests.

    *)
  2. defaultValue : DefaultValue.t option;
    (*

    The default value to use if the parameter cannot be extracted from the response.

    *)
  3. 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.

    *)
  4. value : ResponseExtractionMapping.t option;
    (*

    The JSON path or extraction mapping that defines how to extract the parameter value from API responses.

    *)
}
Sourceval make : ?key:??? -> ?defaultValue:??? -> ?propertyLocation:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.ConnectorPropertyKey.t | `Structure of (string * [> `String of JsonPathString.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t