From 92d089b1abe05de80cf1ef7d2836ad0ee3e3edab Mon Sep 17 00:00:00 2001 From: gfleury Date: Tue, 17 Mar 2020 16:00:50 -0300 Subject: [PATCH] Include version on PR Deletion --- default_api.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/default_api.go b/default_api.go index a4570b6..b607a64 100644 --- a/default_api.go +++ b/default_api.go @@ -1396,6 +1396,15 @@ Deletes a pull request. <p> To call this resource, users must be authent @param pullRequestId the ID of the pull request within the repository @return */ func (a *DefaultApiService) Delete(projectKey, repositorySlug string, pullRequestID int64) (*APIResponse, error) { + return a.DeleteWithVersion(projectKey, repositorySlug, pullRequestID, 1) +} + +/* DefaultApiService +Deletes a pull request. <p> To call this resource, users must be authenticated and have permission to view the pull request. Additionally, they must: <ul> <li> be the pull request author, if the system is configured to allow authors to delete their own pull requests (this is the default) OR </li> <li>have repository administrator permission for the repository the pull request is targeting</li> </ul> A body containing the version of the pull request must be provided with this request. <pre><code>{ \"version\": 1 }</code></pre> + +@param pullRequestId the ID of the pull request within the repository +@return */ +func (a *DefaultApiService) DeleteWithVersion(projectKey, repositorySlug string, pullRequestID, version int64) (*APIResponse, error) { var ( localVarHTTPMethod = strings.ToUpper("Delete") localVarPostBody interface{} @@ -1404,7 +1413,7 @@ func (a *DefaultApiService) Delete(projectKey, repositorySlug string, pullReques ) localVarPostBody = map[string]interface{}{ - "version": 1, + "version": version, } // create path and map variables