Include version on PR Deletion

This commit is contained in:
gfleury 2020-03-17 16:00:50 -03:00
parent 85968e42c6
commit 92d089b1ab

View File

@ -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