Module Values_2.RenderableTaskSource

Contains input values for a task.

Sourcetype nonrec t = {
  1. input : TaskInput.t;
    (*

    A JSON object that contains values for the variables defined in the template. It is made available to the template under the substitution variable task.input. For example, if you define a variable task.input.text in your template, you can supply the variable in the JSON object as "text": "sample text".

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