Class PagingInformation
- Namespace
- Auth0.Management
Api .Paging
- Assembly
- Auth0.ManagementApi.dll
Contains paging information that details what page a list of items relates to, how many more there are etc.
- Inheritance
-
Paging
Information
- Inherited Members
Constructors
PagingInformation(int, int, int, int)
Initializes a new instance of the Paging
Parameters
start
intStart index into the number of items.
limit
intMaximum number of items requested.
length
intNumber of items actually returned.
total
intTotal number of items available on the server.
Properties
Length
Number of items actually returned.
Property Value
Remarks
This is either the per_page
you requested if there
are more results or a number smaller than that if this
is the last page of results and there are no more to
page through.
Limit
Maximum number of items requested.
Property Value
Remarks
This is the per_page
you requested.
Start
Start index into the number of items.
Property Value
Remarks
This is the page
you requested multiplied by the per_page
.
Total
Total number of items available on the server.