Module Values.CountersSource

Represents entity counters.

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

    The total number of entities.

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

    The number of passed entities.

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

    The number of failed entities.

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

    The number of warned entities.

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

    The number of errored entities.

    *)
  6. stopped : Integer.t option;
    (*

    The number of stopped entities.

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

    The number of skipped entities.

    *)
}
Sourceval make : ?total:??? -> ?passed:??? -> ?failed:??? -> ?warned:??? -> ?errored:??? -> ?stopped:??? -> ?skipped:??? -> 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