mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
Merge pull request #2 from sanketjpatel/feat/pagination
Add pagination options for GetRepositories
This commit is contained in:
commit
95377ab099
@ -5858,6 +5858,10 @@ Retrieve repositories from the project corresponding to the supplied <strong&
|
|||||||
@param projectKey the parent project key
|
@param projectKey the parent project key
|
||||||
@return */
|
@return */
|
||||||
func (a *DefaultApiService) GetRepositories(projectKey string) (*APIResponse, error) {
|
func (a *DefaultApiService) GetRepositories(projectKey string) (*APIResponse, error) {
|
||||||
|
return a.GetRepositoriesWithOptions(projectKey, make(map[string]interface{}))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *DefaultApiService) GetRepositoriesWithOptions(projectKey string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
||||||
var (
|
var (
|
||||||
localVarHTTPMethod = strings.ToUpper("Get")
|
localVarHTTPMethod = strings.ToUpper("Get")
|
||||||
localVarPostBody interface{}
|
localVarPostBody interface{}
|
||||||
@ -5873,6 +5877,20 @@ func (a *DefaultApiService) GetRepositories(projectKey string) (*APIResponse, er
|
|||||||
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{}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user