Values.UpdatePullRequestApprovalStateInputSourceUpdates the state of a user's approval on a pull request. The user is derived from the signed-in account when the request is made.
type nonrec t = {pullRequestId : PullRequestId.t;The system-generated ID of the pull request.
*)revisionId : RevisionId.t;The system-generated ID of the revision.
*)approvalState : ApprovalState.t;The approval state to associate with the user on the pull request.
*)}val make :
pullRequestId:PullRequestId.t ->
revisionId:RevisionId.t ->
approvalState:ApprovalState.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of PullRequestId.t ]) list ]