Module Values.JobDetailsSource

The number of documents successfully and unsuccessfully processed during a translation job.

Sourcetype nonrec t = {
  1. translatedDocumentsCount : Integer.t option;
    (*

    The number of documents successfully processed during a translation job.

    *)
  2. documentsWithErrorsCount : Integer.t option;
    (*

    The number of documents that could not be processed during a translation job.

    *)
  3. inputDocumentsCount : Integer.t option;
    (*

    The number of documents used as input in a translation job.

    *)
}
Sourceval make : ?translatedDocumentsCount:??? -> ?documentsWithErrorsCount:??? -> ?inputDocumentsCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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