Module Values.HITLayoutParameterSource

The HITLayoutParameter data structure defines parameter values used with a HITLayout. A HITLayout is a reusable Amazon Mechanical Turk project template used to provide Human Intelligence Task (HIT) question data for CreateHIT.

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

    The name of the parameter in the HITLayout.

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

    The value substituted for the parameter referenced in the HITLayout.

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