blob: f100651a44a6bc8441486796d97fcd0b585cad63 [file] [log] [blame]
package gophercloud
// Pagination stores information that's necessary to enumerate through pages of results.
type Pagination struct {
// Next is the full URL to the next page of results, or nil if this is the last page.
Next *string `json:"next,omitempty"`
// Previous is the full URL to the previous page of results, or nil if this is the first page.s
Previous *string `json:"previous,omitempty"`
}