blob: f100651a44a6bc8441486796d97fcd0b585cad63 [file] [log] [blame]
Ash Wilson2f5dd1f2014-09-03 14:01:37 -04001package gophercloud
2
3// Pagination stores information that's necessary to enumerate through pages of results.
4type 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}