Module Values.QuestionMetricSource

A metric for a particular question in the pillar.

Sourcetype nonrec t = {
  1. questionId : QuestionId.t option;
  2. risk : Risk.t option;
  3. bestPractices : BestPractices.t option;
    (*

    The best practices, or choices, that have been identified as contributing to risk in a question.

    *)
}
Sourceval make : ?questionId:??? -> ?risk:??? -> ?bestPractices:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ChoiceId.t ]) list ] list | `String of QuestionId.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