Module Values.ChangeSource

Represents a single change within a collaboration change request, containing the change identifier and specification.

Sourcetype nonrec t = {
  1. specificationType : ChangeSpecificationType.t option;
    (*

    The type of specification for this change.

    *)
  2. specification : ChangeSpecification.t option;
    (*

    The specification details for this change.

    *)
  3. types : ChangeTypeList.t option;
    (*

    The list of change types that were applied.

    *)
}
Sourceval make : ?specificationType:??? -> ?specification:??? -> ?types:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of AccountId.t ]) list ]) list ]) 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