Values.OverridePullRequestApprovalRulesInputSourceSets aside (overrides) all approval rule requirements for a specified pull request.
type nonrec t = {pullRequestId : PullRequestId.t;The system-generated ID of the pull request for which you want to override all approval rule requirements. To get this information, use GetPullRequest.
*)revisionId : RevisionId.t;The system-generated ID of the most recent revision of the pull request. You cannot override approval rules for anything but the most recent revision of a pull request. To get the revision ID, use GetPullRequest.
*)overrideStatus : OverrideStatus.t;Whether you want to set aside approval rule requirements for the pull request (OVERRIDE) or revoke a previous override and apply approval rule requirements (REVOKE). REVOKE status is not stored.
*)}val make :
pullRequestId:PullRequestId.t ->
revisionId:RevisionId.t ->
overrideStatus:OverrideStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of PullRequestId.t ]) list ]