Module Values.HighestSeverityThreatDetailsSource

Contains details of the highest severity threat detected during scan and number of infected files.

Sourcetype nonrec t = {
  1. severity : String_.t option;
    (*

    Severity level of the highest severity threat detected.

    *)
  2. threatName : String_.t option;
    (*

    Threat name of the highest severity threat detected as part of the malware scan.

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

    Total number of infected files with the highest severity threat detected.

    *)
}
Sourceval make : ?severity:??? -> ?threatName:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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