Module Values.ChoiceAnswerSummarySource

A choice summary that has been answered on a question in your workload.

Sourcetype nonrec t = {
  1. choiceId : ChoiceId.t option;
  2. status : ChoiceStatus.t option;
    (*

    The status of a choice.

    *)
  3. reason : ChoiceReason.t option;
    (*

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

    *)
}
Sourceval make : ?choiceId:??? -> ?status:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ChoiceId.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