Module Values.UpdatePullRequestApprovalStateInputSource

Updates 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.

Sourcetype nonrec t = {
  1. pullRequestId : PullRequestId.t;
    (*

    The system-generated ID of the pull request.

    *)
  2. revisionId : RevisionId.t;
    (*

    The system-generated ID of the revision.

    *)
  3. approvalState : ApprovalState.t;
    (*

    The approval state to associate with the user on the pull request.

    *)
}
Sourceval context_ : string
Sourceval make : pullRequestId:PullRequestId.t -> revisionId:RevisionId.t -> approvalState:ApprovalState.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PullRequestId.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