Module Values.AnswerSummarySource

An answer summary of a lens review in a workload.

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 your workload.

    *)
  7. isApplicable : IsApplicable.t option;
  8. risk : Risk.t option;
  9. reason : AnswerReason.t option;
    (*

    The reason why a choice is non-applicable to a question in your workload.

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

    The type of the question.

    *)
  11. jiraConfiguration : JiraConfiguration.t option;
    (*

    Configuration of the Jira integration.

    *)
}
Sourceval make : ?questionId:??? -> ?pillarId:??? -> ?questionTitle:??? -> ?choices:??? -> ?selectedChoices:??? -> ?choiceAnswerSummaries:??? -> ?isApplicable:??? -> ?risk:??? -> ?reason:??? -> ?questionType:??? -> ?jiraConfiguration:??? -> 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 | `Structure of (string * [> `String of JiraIssueUrl.t | `Timestamp of Timestamp.t ]) 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