Module Values.QuestionDifferenceSource

A question difference return object.

Sourcetype nonrec t = {
  1. questionId : QuestionId.t option;
  2. questionTitle : QuestionTitle.t option;
  3. differenceStatus : DifferenceStatus.t option;
    (*

    Indicates the type of change to the question.

    *)
}
Sourceval make : ?questionId:??? -> ?questionTitle:??? -> ?differenceStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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