ProductSearchPage
Representation of a Product Search Page ProductSearchPage
export interface ProductSearchPage {
'breadcrumbs'?: Array<Breadcrumb>;
'categoryCode'?: string;
'currentQuery'?: SearchState;
'facets'?: Array<Facet>;
'freeTextSearch'?: string;
'keywordRedirectUrl'?: string;
'pagination'?: DeprecatedPagination;
'products'?: Array<Product>;
'sorts'?: Array<Sort>;
'spellingSuggestion'?: SpellingSuggestion;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
breadcrumbs | Optional | Array<Breadcrumb> | List of breadcrumbs info {Array<Breadcrumb>} ProductSearchPage |
categoryCode | Optional | string | Code of category {string} ProductSearchPage |
currentQuery | Optional | SearchState | {SearchState} ProductSearchPage |
facets | Optional | Array<Facet> | List of facets {Array<Facet>} ProductSearchPage |
freeTextSearch | Optional | string | Free text search {string} ProductSearchPage |
keywordRedirectUrl | Optional | string | Redirect url address keyword {string} ProductSearchPage |
pagination | Optional | DeprecatedPagination | {DeprecatedPagination} ProductSearchPage |
products | Optional | Array<Product> | List of products {Array<Product>} ProductSearchPage |
sorts | Optional | Array<Sort> | List of sorts {Array<Sort>} ProductSearchPage |
spellingSuggestion | Optional | SpellingSuggestion | {SpellingSuggestion} ProductSearchPage |