Module Values.ChoiceUpdateSource

A list of choices to be updated.

Sourcetype nonrec t = {
  1. status : ChoiceStatus.t;
    (*

    The status of a choice.

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

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

    *)
  3. notes : ChoiceNotes.t option;
    (*

    The notes associated with a choice.

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