Module Values.GetMalwareScanResultDetailsSource

Contains information about the results of the malware scan.

Sourcetype nonrec t = {
  1. scanResultStatus : ScanResultStatus.t option;
    (*

    Status indicating whether threats were found for a completed scan.

    *)
  2. skippedFileCount : PositiveLong.t option;
    (*

    The total number of files that were skipped during the scan.

    *)
  3. failedFileCount : PositiveLong.t option;
    (*

    The total number of files that failed to be scanned.

    *)
  4. threatFoundFileCount : PositiveLong.t option;
    (*

    The total number of files in which threats were detected.

    *)
  5. totalFileCount : PositiveLong.t option;
    (*

    The total number of files that were processed during the scan.

    *)
  6. totalBytes : PositiveLong.t option;
    (*

    The total number of bytes that were scanned.

    *)
  7. uniqueThreatCount : PositiveLong.t option;
    (*

    The total number of unique threats that were detected during the scan.

    *)
  8. threats : ScanResultThreats.t option;
    (*

    The threats that were detected during the malware scan.

    *)
}
Sourceval make : ?scanResultStatus:??? -> ?skippedFileCount:??? -> ?failedFileCount:??? -> ?threatFoundFileCount:??? -> ?totalFileCount:??? -> ?totalBytes:??? -> ?uniqueThreatCount:??? -> ?threats:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `Long of PositiveLong.t | `String of NonEmptyString.t ]) list ] list | `Long of PositiveLong.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