Module Values.PillarDifferenceSource

A pillar difference return object.

Sourcetype nonrec t = {
  1. pillarId : PillarId.t option;
  2. pillarName : PillarName.t option;
  3. differenceStatus : DifferenceStatus.t option;
    (*

    Indicates the type of change to the pillar.

    *)
  4. questionDifferences : QuestionDifferences.t option;
    (*

    List of question differences.

    *)
}
Sourceval make : ?pillarId:??? -> ?pillarName:??? -> ?differenceStatus:??? -> ?questionDifferences:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of QuestionId.t ]) list ] list | `String of PillarId.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