Пример #1
0
 /// <summary>
 /// Updates an existing issue. Updating the title or content fields requires that the caller authenticate as a user with write access.
 /// For other fields, the caller must authenticate as a user with read access.
 /// Private repositories or private issue trackers require the caller to authenticate with an account that has appropriate access.
 /// </summary>
 /// <param name="issue">The issue.</param>
 /// <returns>Response from the BitBucket API.</returns>
 public async Task <Issue> PutIssue(Issue issue)
 {
     return(await _repositoriesEndPoint.PutIssue(issue));
 }