Пример #1
0
 /// <summary>
 /// Deletes a milestone in an issue tracker. Keep in mind that the milestone can be in use on existing issues.
 /// To delete a milestone, public and private issue trackers require the caller to authenticate with an account that has appropriate authorisation.
 /// </summary>
 /// <param name="milestoneId">The milestone identifier.</param>
 /// <returns>The response from the BitBucket API.</returns>
 public async Task <Milestone> DeleteMilestone(int?milestoneId)
 {
     return(await _repositoriesEndPoint.DeleteMilestone(milestoneId));
 }