public PaginatedResult(GdaxResponse <IList <T> > response, PaginationOptions paging = null)
 {
     this.response = response;
     this.paging   = paging;
 }
示例#2
0
 public PagedResults(GdaxResponse <IList <T> > response, ICursorEncoder <TCursor> encoder, PagingOptions <TCursor> paging = null)
 {
     this.response = response;
     this.encoder  = encoder;
     this.paging   = paging;
 }