Values.UpdateAnswerInputSourceInput to update answer.
type nonrec t = {workloadId : WorkloadId.t;lensAlias : LensAlias.t;questionId : QuestionId.t;selectedChoices : SelectedChoices.t option;choiceUpdates : ChoiceUpdates.t option;A list of choices to update on a question in your workload. The String key corresponds to the choice ID to be updated.
*)notes : Notes.t option;isApplicable : IsApplicable.t option;reason : AnswerReason.t option;The reason why a question is not applicable to your workload.
*)}val make :
?selectedChoices:??? ->
?choiceUpdates:??? ->
?notes:??? ->
?isApplicable:??? ->
?reason:??? ->
workloadId:WorkloadId.t ->
lensAlias:LensAlias.t ->
questionId:QuestionId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of IsApplicable.t
| `Enum of string
| `List of [> `String of ChoiceId.t ] list
| `Map of
([> `String of ChoiceId.t ]
* [> `Structure of
(string * [> `Enum of string | `String of ChoiceNotes.t ])
list ])
list
| `String of WorkloadId.t ])
list ]