Module Values.ThreatDetectedByNameSource

Contains details about identified threats organized by threat name.

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

    Total number of infected files identified.

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

    Total number of unique threats by name identified, as part of the malware scan.

    *)
  3. shortened : Boolean.t option;
    (*

    Flag to determine if the finding contains every single infected file-path and/or every threat.

    *)
  4. threatNames : ScanThreatNames.t option;
    (*

    List of identified threats with details, organized by threat name.

    *)
}
Sourceval make : ?itemCount:??? -> ?uniqueThreatNameCount:??? -> ?shortened:??? -> ?threatNames:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]) 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