Skip to main content

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 to 0 if negative.

take (required): int
The number of records to retrieve. Clamped between 1 and 200.