mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Adding Paged responses helper
This commit is contained in:
parent
bc434965a7
commit
6f17238a32
@ -521,8 +521,10 @@ func NewRawAPIResponse(r *http.Response) (*APIResponse, error) {
|
||||
}
|
||||
|
||||
// HasNextPage returns if response is paged and has next page and where it does start
|
||||
func HasNextPage(response *APIResponse) (bool, int) {
|
||||
isLastPage := response.Values["isLastPage"].(bool)
|
||||
nextPageStart := int(response.Values["nextPageStart"].(float64))
|
||||
func HasNextPage(response *APIResponse) (isLastPage bool, nextPageStart int) {
|
||||
isLastPage = response.Values["isLastPage"].(bool)
|
||||
if !isLastPage {
|
||||
nextPageStart = int(response.Values["nextPageStart"].(float64))
|
||||
}
|
||||
return !isLastPage, nextPageStart
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user