Values.UpdatePullRequestStatusInputSourceUpdates the status of a pull request.
type nonrec t = {pullRequestId : PullRequestId.t;The system-generated ID of the pull request. To get this ID, use ListPullRequests.
*)pullRequestStatus : PullRequestStatusEnum.t;The status of the pull request. The only valid operations are to update the status from OPEN to OPEN, OPEN to CLOSED or from CLOSED to CLOSED.
*)}val make :
pullRequestId:PullRequestId.t ->
pullRequestStatus:PullRequestStatusEnum.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of PullRequestId.t ]) list ]