Alokai

ProductList

Representation of a Product List ProductList

export interface ProductList {
	'catalog'?: string;
	'currentPage'?: number;
	'products'?: Array<Product>;
	'totalPageCount'?: number;
	'totalProductCount'?: number;
	'version'?: string;
}

Properties

NameRequiredTypeDescription
catalogOptionalstringCatalog of product list {string} ProductList
currentPageOptionalnumberNumber of current page {number} ProductList
productsOptionalArray<Product>List of products {Array<Product>} ProductList
totalPageCountOptionalnumberTotal page count {number} ProductList
totalProductCountOptionalnumberTotal product count {number} ProductList
versionOptionalstringVersion of product list {string} ProductList

Referenced Types

On this page