Module Values.ReviewTemplateAnswerSummarySource

The summary of review template answers.

Sourcetype nonrec t = {
  1. questionId : QuestionId.t option;
  2. pillarId : PillarId.t option;
  3. questionTitle : QuestionTitle.t option;
  4. choices : Choices.t option;
  5. selectedChoices : SelectedChoices.t option;
  6. choiceAnswerSummaries : ChoiceAnswerSummaries.t option;
    (*

    A list of selected choices to a question in the review template.

    *)
  7. isApplicable : IsApplicable.t option;
  8. answerStatus : ReviewTemplateAnswerStatus.t option;
    (*

    The status of whether or not this question has been answered.

    *)
  9. reason : AnswerReason.t option;
    (*

    The reason why a choice is not-applicable to a question in the review template.

    *)
  10. questionType : QuestionType.t option;
    (*

    The type of question.

    *)
}
Sourceval make : ?questionId:??? -> ?pillarId:??? -> ?questionTitle:??? -> ?choices:??? -> ?selectedChoices:??? -> ?choiceAnswerSummaries:??? -> ?isApplicable:??? -> ?answerStatus:??? -> ?reason:??? -> ?questionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsApplicable.t | `Enum of string | `List of [> `String of ChoiceId.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ChoiceContentDisplayText.t ]) list ] list ]) list ] list | `String of ChoiceId.t | `Structure of (string * [> `String of ChoiceContentDisplayText.t ]) list ]) 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