Module Values.ConnectionHttpParametersSource

Any additional parameters for the connection.

Sourcetype nonrec t = {
  1. headerParameters : ConnectionHeaderParametersList.t option;
    (*

    Any additional header parameters for the connection.

    *)
  2. queryStringParameters : ConnectionQueryStringParametersList.t option;
    (*

    Any additional query string parameters for the connection.

    *)
  3. bodyParameters : ConnectionBodyParametersList.t option;
    (*

    Any additional body string parameters for the connection.

    *)
}
Sourceval make : ?headerParameters:??? -> ?queryStringParameters:??? -> ?bodyParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderKey.t ]) list ] 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