Module Values.RunStatisticsForAssetsSource

The asset statistics from the data source run.

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

    The added statistic for the data source run.

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

    The updated statistic for the data source run.

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

    The unchanged statistic for the data source run.

    *)
  4. skipped : Integer.t option;
    (*

    The skipped statistic for the data source run.

    *)
  5. failed : Integer.t option;
    (*

    The failed statistic for the data source run.

    *)
}
Sourceval make : ?added:??? -> ?updated:??? -> ?unchanged:??? -> ?skipped:??? -> ?failed:??? -> 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