Module Values.DifferenceSource

Returns information about a set of differences for a commit specifier.

Sourcetype nonrec t = {
  1. beforeBlob : BlobMetadata.t option;
    (*

    Information about a beforeBlob data type object, including the ID, the file mode permission code, and the path.

    *)
  2. afterBlob : BlobMetadata.t option;
    (*

    Information about an afterBlob data type object, including the ID, the file mode permission code, and the path.

    *)
  3. changeType : ChangeTypeEnum.t option;
    (*

    Whether the change type of the difference is an addition (A), deletion (D), or modification (M).

    *)
}
Sourceval make : ?beforeBlob:??? -> ?afterBlob:??? -> ?changeType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of ObjectId.t ]) 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