Module Values.ScanResultThreatSource

Contains information about a specific threat that was detected during the malware scan.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The name of the detected threat.

    *)
  2. source : DetectionSource.t option;
    (*

    The source that detected this threat.

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

    The number of instances of this threat that were detected.

    *)
  4. hash : NonEmptyString.t option;
    (*

    The hash value associated with the detected threat.

    *)
  5. itemDetails : ItemDetailsList.t option;
    (*

    Additional information about where this threat was detected.

    *)
}
Sourceval make : ?name:??? -> ?source:??? -> ?count:??? -> ?hash:??? -> ?itemDetails:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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