Module Values.ExportStatisticsSource

Statistics about the execution of an export job.

Sourcetype nonrec t = {
  1. processedRecordsCount : ProcessedRecordsCount.t option;
    (*

    The number of records that were processed to generate the final export file.

    *)
  2. exportedRecordsCount : ExportedRecordsCount.t option;
    (*

    The number of records that were exported to the final export file. This value might not be available for all export source types

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