Module Values.EnabledControlParameterSource

A key/value pair, where Key is of type String and Value is of type Document.

Sourcetype nonrec t = {
  1. key : String_.t;
    (*

    The key of a key/value pair.

    *)
  2. value : Document.t;
    (*

    The value of a key/value pair.

    *)
}
Sourceval context_ : string
Sourceval make : key:String_.t -> value:Document.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of 'a 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