Ash Wilson | 2f5dd1f | 2014-09-03 14:01:37 -0400 | [diff] [blame] | 1 | package gophercloud |
2 | |||||
3 | // Pagination stores information that's necessary to enumerate through pages of results. | ||||
4 | type Pagination struct { | ||||
5 | |||||
6 | // Next is the full URL to the next page of results, or nil if this is the last page. | ||||
7 | Next *string `json:"next,omitempty"` | ||||
8 | |||||
9 | // Previous is the full URL to the previous page of results, or nil if this is the first page.s | ||||
10 | Previous *string `json:"previous,omitempty"` | ||||
11 | } |