Module Values.PullRequestCreatedEventMetadataSource

Metadata about the pull request that is used when comparing the pull request source with its destination.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t option;
    (*

    The name of the repository where the pull request was created.

    *)
  2. sourceCommitId : CommitId.t option;
    (*

    The commit ID on the source branch used when the pull request was created.

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

    The commit ID of the tip of the branch specified as the destination branch when the pull request was created.

    *)
  4. mergeBase : CommitId.t option;
    (*

    The commit ID of the most recent commit that the source branch and the destination branch have in common.

    *)
}
Sourceval make : ?repositoryName:??? -> ?sourceCommitId:??? -> ?destinationCommitId:??? -> ?mergeBase:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.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