interface PagingOptions {
    limit?: number;
    offset?: number;
}

Properties

Properties

limit?: number

The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.

offset?: number

The index of the first item to return. Default: 0 (the first item). Use with limit to get the next set of items.