Alokai

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

NameRequiredTypeDescription
breadcrumbsOptionalArray<Breadcrumb>List of breadcrumbs info {Array<Breadcrumb>} ProductSearchPage
categoryCodeOptionalstringCode of category {string} ProductSearchPage
currentQueryOptionalSearchState{SearchState} ProductSearchPage
facetsOptionalArray<Facet>List of facets {Array<Facet>} ProductSearchPage
freeTextSearchOptionalstringFree text search {string} ProductSearchPage
keywordRedirectUrlOptionalstringRedirect url address keyword {string} ProductSearchPage
paginationOptionalDeprecatedPagination{DeprecatedPagination} ProductSearchPage
productsOptionalArray<Product>List of products {Array<Product>} ProductSearchPage
sortsOptionalArray<Sort>List of sorts {Array<Sort>} ProductSearchPage
spellingSuggestionOptionalSpellingSuggestion{SpellingSuggestion} ProductSearchPage

Referenced Types

On this page