github.com/frankrap/okex-api@v1.0.4/cursor_page.go (about)

     1  package okex
     2  
     3  /*
     4   OKEX uses cursor pagination for all REST requests which return arrays
     5  */
     6  type CursorPage struct {
     7  	// Request page before (newer) this pagination id.
     8  	Before int
     9  	// Request page after (older) this pagination id.
    10  	After int
    11  	// Number of results per request. Maximum 100. (default 100)
    12  	Limit int
    13  }