Module Values.MergeHunkDetailSource

Information about the details of a merge hunk that contains a conflict in a merge or pull request operation.

Sourcetype nonrec t = {
  1. startLine : LineNumber.t option;
    (*

    The start position of the hunk in the merge result.

    *)
  2. endLine : LineNumber.t option;
    (*

    The end position of the hunk in the merge result.

    *)
  3. hunkContent : HunkContent.t option;
    (*

    The base-64 encoded content of the hunk merged region that might contain a conflict.

    *)
}
Sourceval make : ?startLine:??? -> ?endLine:??? -> ?hunkContent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LineNumber.t | `String of HunkContent.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