Module Values.ScannedItemCountSource

Total number of scanned files.

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

    Total GB of files scanned for malware.

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

    Number of files scanned.

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

    Total number of scanned volumes.

    *)
}
Sourceval make : ?totalGb:??? -> ?files:??? -> ?volumes:??? -> 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