Module Values.ConformancePackInputParameterSource

Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters.

Sourcetype nonrec t = {
  1. parameterName : ParameterName.t;
    (*

    One part of a key-value pair.

    *)
  2. parameterValue : ParameterValue.t;
    (*

    Another part of the key-value pair.

    *)
}
Sourceval context_ : string
Sourceval make : parameterName:ParameterName.t -> parameterValue:ParameterValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ParameterName.t ]) 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