Module Values.TaskParameterValueSource

The data types for the task parameters.

Sourcetype nonrec t = {
  1. int : IntString.t option;
    (*

    A signed integer represented as a string.

    *)
  2. float : FloatString.t option;
    (*

    A double precision IEEE-754 floating point number represented as a string.

    *)
  3. string : ParameterString.t option;
    (*

    A UTF-8 string.

    *)
  4. path : PathString.t option;
    (*

    A file system path represented as a string.

    *)
  5. chunkInt : String_.t option;
    (*

    A range (for example 1-10) or selection of specific (for example 1,3,7,8,10) integers represented as a string.

    *)
}
Sourceval make : ?int:??? -> ?float:??? -> ?string:??? -> ?path:??? -> ?chunkInt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IntString.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