Module Values.PullRequestMergedStateChangedEventMetadataSource

Returns information about the change in the merge state for a pull request event.

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

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

    *)
  2. destinationReference : ReferenceName.t option;
    (*

    The name of the branch that the pull request is merged into.

    *)
  3. mergeMetadata : MergeMetadata.t option;
    (*

    Information about the merge state change event.

    *)
}
Sourceval make : ?repositoryName:??? -> ?destinationReference:??? -> ?mergeMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.t | `Structure of (string * [> `Boolean of IsMerged.t | `Enum of string | `String of Arn.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