Pagination Constructors
An object defining constructors for the Pagination class.
Pagination(skip, take)
Initializes a new instance of the Pagination
class with specified pagination settings.
Parameters:
skip (required): int
The number of records to skip. Defaults to0
if negative.
take (required): int
The number of records to retrieve. Clamped between1
and200
.