Module Values.PillarReviewSummarySource

A pillar review summary of a lens review.

Sourcetype nonrec t = {
  1. pillarId : PillarId.t option;
  2. pillarName : PillarName.t option;
  3. notes : Notes.t option;
  4. riskCounts : RiskCounts.t option;
  5. prioritizedRiskCounts : RiskCounts.t option;
}
Sourceval make : ?pillarId:??? -> ?pillarName:??? -> ?notes:??? -> ?riskCounts:??? -> ?prioritizedRiskCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list | `String of PillarId.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