Module Values.SummarySource

The summary of a recommendation.

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

    The finding classification of the recommendation.

    *)
  2. value : SummaryValue.t option;
    (*

    The value of the recommendation summary.

    *)
  3. reasonCodeSummaries : ReasonCodeSummaries.t option;
    (*

    An array of objects that summarize a finding reason code.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> ?reasonCodeSummaries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of SummaryValue.t | `Enum of string | `List of [> `Structure of (string * [> `Double of SummaryValue.t | `Enum of string ]) 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