Esempio n. 1
0
 /// <summary>
 /// Updates an existing pull request. The pull request's status must be open.
 /// With the exception of the source and destination parameters, the request body must include all the existing request parameters;
 /// Omitting a parameter causes the server to drop the existing value. For example, if the pull requests already has 3 reviewers,
 /// the request body must include these 3 reviewers to prevent Bitbucket from dropping them.
 /// </summary>
 /// <param name="pullRequest">The pull request.</param>
 /// <returns></returns>
 public object PutPullRequest(PullRequest pullRequest)
 {
     return(_repositoriesEndPoint.PutPullRequest(_accountName, _repository, pullRequest));
 }