Skip to content

Instantly share code, notes, and snippets.

@jchv
Created August 5, 2015 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchv/9916902f4962da1a3ce0 to your computer and use it in GitHub Desktop.
Save jchv/9916902f4962da1a3ce0 to your computer and use it in GitHub Desktop.
// Page represents a cursor for a page of calendar entries.
type Page struct {
Calendar string `json:"calendar"`
EarliestDate time.Time `json:"earliestDate"`
LatestDate time.Time `json:"latestDate"`
Sort string `json:"sort"`
Skip int `json:"skip"`
Limit int `json:"limit"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment