Module Values.MergeMetadataSource

Returns information about a merge or potential merge between a source reference and a destination reference in a pull request.

Sourcetype nonrec t = {
  1. isMerged : IsMerged.t option;
    (*

    A Boolean value indicating whether the merge has been made.

    *)
  2. mergedBy : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the user who merged the branches.

    *)
  3. mergeCommitId : CommitId.t option;
    (*

    The commit ID for the merge commit, if any.

    *)
  4. mergeOption : MergeOptionTypeEnum.t option;
    (*

    The merge strategy used in the merge.

    *)
}
Sourceval make : ?isMerged:??? -> ?mergedBy:??? -> ?mergeCommitId:??? -> ?mergeOption:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsMerged.t | `Enum of string | `String of Arn.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