Module Values.StatisticsSource

Provides processing statistics for a classification job.

Sourcetype nonrec t = {
  1. approximateNumberOfObjectsToProcess : float option;
    (*

    The approximate number of objects that the job has yet to process during its current run.

    *)
  2. numberOfRuns : float option;
    (*

    The number of times that the job has run.

    *)
}
Sourceval make : ?approximateNumberOfObjectsToProcess:??? -> ?numberOfRuns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float ]) 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