Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.31 KB

PagingInfo.md

File metadata and controls

15 lines (11 loc) · 1.31 KB

PagingInfo

Properties

Name Type Description Notes
Page int32 The current page number. 1-indexed, so the first page is 1 by default. May be omitted if result is empty (because non-existent page was specified or perPage=0 was requested) [optional]
PerPage int32 Current page size, describes how many items are in each page. Default value is 100. Maximum value is 1000. If perPage value in the request is greater than 1000, the maximum value (1000) is applied [optional]
PageStart int32 The zero-based number of the first element on the current page. Omitted if the page is omitted or result is empty [optional]
PageEnd int32 The zero-based index of the last element on the current page. Omitted if the page is omitted or result is empty [optional]
TotalPages int32 The total number of pages in a dataset. May be omitted for some resources due to performance reasons [optional]
TotalElements int32 The total number of elements in a dataset. May be omitted for some resource due to performance reasons [optional]

[Back to Model list] [Back to API list] [Back to README]