page_info.go 268 B

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