Add pagination options for GetPullRequestCommits

This commit is contained in:
Sanket Patel 2018-06-05 09:45:24 -05:00
parent f4cb1441f0
commit afe7ad3461
2 changed files with 41 additions and 12 deletions

View File

@ -76,7 +76,7 @@ type UserWithNameEmail struct {
EmailAddress string `json:"emailAddress"` EmailAddress string `json:"emailAddress"`
} }
type User struct { type UserWithLinks struct {
Name string `json:"name"` Name string `json:"name"`
Email string `json:"emailAddress"` Email string `json:"emailAddress"`
ID int `json:"id"` ID int `json:"id"`
@ -87,11 +87,21 @@ type User struct {
Links Links `json:"links"` Links Links `json:"links"`
} }
type User struct {
Name string `json:"name"`
Email string `json:"emailAddress"`
ID int `json:"id"`
DisplayName string `json:"displayName"`
Active bool `json:"active"`
Slug string `json:"slug"`
Type string `json:"type"`
}
type UserWithMetadata struct { type UserWithMetadata struct {
User User `json:"user"` User UserWithLinks `json:"user"`
Role string `json:"role"` Role string `json:"role"`
Approved bool `json:"approved"` Approved bool `json:"approved"`
Status string `json:"status"` Status string `json:"status"`
} }
type MergeResult struct { type MergeResult struct {
@ -139,13 +149,13 @@ type SSHKey struct {
// Commit contains data from a commit in BitBucket // Commit contains data from a commit in BitBucket
type Commit struct { type Commit struct {
ID string `json:"id"` ID string `json:"id"`
DisplayID string `json:"displayId"` DisplayID string `json:"displayId"`
Author UserWithNameEmail `json:"author"` Author User `json:"author"`
AuthorTimestamp int64 `json:"authorTimestamp"` AuthorTimestamp int64 `json:"authorTimestamp"`
Committer UserWithNameEmail `json:"committer"` Committer User `json:"committer"`
CommitterTimestamp int64 `json:"committerTimestamp"` CommitterTimestamp int64 `json:"committerTimestamp"`
Message string `json:"message"` Message string `json:"message"`
Parents []struct { Parents []struct {
ID string `json:"id"` ID string `json:"id"`
DisplayID string `json:"displayId"` DisplayID string `json:"displayId"`

View File

@ -6370,6 +6370,10 @@ Retrieve the repository matching the supplied <strong>projectKey</stron
@param repositorySlug the repository slug @param repositorySlug the repository slug
@return */ @return */
func (a *DefaultApiService) GetPullRequestCommits(projectKey, repositorySlug string, pullRequestID int) (*APIResponse, error) { func (a *DefaultApiService) GetPullRequestCommits(projectKey, repositorySlug string, pullRequestID int) (*APIResponse, error) {
return a.GetPullRequestCommitsWithOptions(projectKey, repositorySlug, pullRequestID, make(map[string]interface{}))
}
func (a *DefaultApiService) GetPullRequestCommitsWithOptions(projectKey, repositorySlug string, pullRequestID int, localVarOptionals map[string]interface{}) (*APIResponse, error) {
var ( var (
localVarHTTPMethod = strings.ToUpper("Get") localVarHTTPMethod = strings.ToUpper("Get")
localVarPostBody interface{} localVarPostBody interface{}
@ -6387,6 +6391,21 @@ func (a *DefaultApiService) GetPullRequestCommits(projectKey, repositorySlug str
localVarQueryParams := url.Values{} localVarQueryParams := url.Values{}
localVarFormParams := url.Values{} localVarFormParams := url.Values{}
if err := typeCheckParameter(localVarOptionals["limit"], "int", "limit"); err != nil {
return nil, err
}
if err := typeCheckParameter(localVarOptionals["start"], "int", "start"); err != nil {
return nil, err
}
if localVarTempParam, localVarOk := localVarOptionals["limit"].(int); localVarOk {
localVarQueryParams.Add("limit", parameterToString(localVarTempParam, ""))
}
if localVarTempParam, localVarOk := localVarOptionals["start"].(int); localVarOk {
localVarQueryParams.Add("start", parameterToString(localVarTempParam, ""))
}
// to determine the Content-Type header // to determine the Content-Type header
localVarHTTPContentTypes := []string{} localVarHTTPContentTypes := []string{}