/// <summary> /// Delete a specific comment of an issue. /// </summary> /// <param name="issue">The issue.</param> /// <param name="comment">The comment.</param> /// <returns>The response of BitBucket API.</returns> internal Comment DeleteIssueComment(Issue issue, Comment comment) { return(_repositoriesEndPoint.DeleteIssueComment(issue, comment)); }
/// <summary> /// Delete a specific comment of the issue. /// </summary> /// <param name="commentId">The comment identifier.</param> /// <returns>Response from the BitBucket API.</returns> public Comment DeleteIssueComment(int?commentId) { return(_repositoriesEndPoint.DeleteIssueComment(_issueId, commentId)); }