ProductList
Representation of a Product List ProductList
export interface ProductList {
'catalog'?: string;
'currentPage'?: number;
'products'?: Array<Product>;
'totalPageCount'?: number;
'totalProductCount'?: number;
'version'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
catalog | Optional | string | Catalog of product list {string} ProductList |
currentPage | Optional | number | Number of current page {number} ProductList |
products | Optional | Array<Product> | List of products {Array<Product>} ProductList |
totalPageCount | Optional | number | Total page count {number} ProductList |
totalProductCount | Optional | number | Total product count {number} ProductList |
version | Optional | string | Version of product list {string} ProductList |