Module Values.ScanDetectionsSource

Contains a complete view providing malware scan result details.

Sourcetype nonrec t = {
  1. scannedItemCount : ScannedItemCount.t option;
    (*

    Total number of scanned files.

    *)
  2. threatsDetectedItemCount : ThreatsDetectedItemCount.t option;
    (*

    Total number of infected files.

    *)
  3. highestSeverityThreatDetails : HighestSeverityThreatDetails.t option;
    (*

    Details of the highest severity threat detected during malware scan and number of infected files.

    *)
  4. threatDetectedByName : ThreatDetectedByName.t option;
    (*

    Contains details about identified threats organized by threat name.

    *)
}
Sourceval make : ?scannedItemCount:??? -> ?threatsDetectedItemCount:??? -> ?highestSeverityThreatDetails:??? -> ?threatDetectedByName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.t ]) list ]) 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