ProductsPaginationParameters
Definition of products request pagination related parameters Separated cause of functions only be needing pagination parameters
interface ProductsPaginationParameters extends Pick<RequestVariables, "channel"> {
limit?: number;
page?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
limit | Optional | number | Controls the number of items per page in a limited (paginated) list of products. |
page | Optional | number | Specifies the page number in a limited (paginated) list of products. |