Module Values.JobParameterSource

The details of job 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.

    *)
}
Sourceval make : ?int:??? -> ?float:??? -> ?string:??? -> ?path:??? -> 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