page_info.go 308 B

12345678910
  1. package model
  2. //easyjson:json
  3. type PageInfo struct {
  4. Total int `json:"total"`
  5. StartCursor *string `json:"start_cursor,omitempty"`
  6. EndCursor *string `json:"end_cursor,omitempty"`
  7. HasNextPage bool `json:"has_next_page"`
  8. HasPreviousPage bool `json:"has_previous_page"`
  9. }