page_info.go 257 B

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