Module Values.ReviewTemplateAnswerSource

An answer of the question.

Sourcetype nonrec t = {
  1. questionId : QuestionId.t option;
  2. pillarId : PillarId.t option;
  3. questionTitle : QuestionTitle.t option;
  4. questionDescription : QuestionDescription.t option;
  5. improvementPlanUrl : ImprovementPlanUrl.t option;
  6. helpfulResourceUrl : HelpfulResourceUrl.t option;
  7. helpfulResourceDisplayText : DisplayText.t option;
    (*

    The helpful resource text to be displayed for a custom lens. This field does not apply to Amazon Web Services official lenses.

    *)
  8. choices : Choices.t option;
  9. selectedChoices : SelectedChoices.t option;
  10. choiceAnswers : ChoiceAnswers.t option;
    (*

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

    *)
  11. isApplicable : IsApplicable.t option;
  12. answerStatus : ReviewTemplateAnswerStatus.t option;
    (*

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

    *)
  13. notes : Notes.t option;
  14. reason : AnswerReason.t option;
    (*

    The reason why the question is not applicable to your review template.

    *)
}
Sourceval make : ?questionId:??? -> ?pillarId:??? -> ?questionTitle:??? -> ?questionDescription:??? -> ?improvementPlanUrl:??? -> ?helpfulResourceUrl:??? -> ?helpfulResourceDisplayText:??? -> ?choices:??? -> ?selectedChoices:??? -> ?choiceAnswers:??? -> ?isApplicable:??? -> ?answerStatus:??? -> ?notes:??? -> ?reason:??? -> 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