integration-libs/cds/src/merchandising/model/merchandising-search.model.ts
Contains specific route parameters for the product listing page.
Properties |
|
| brandCode |
brandCode:
|
Type : string
|
| Optional |
|
The brand code is actually a category code, which is used to query the backend API. |
| categoryCode |
categoryCode:
|
Type : string
|
| Optional |
|
The category code which is used to query the backend API. |
| query |
query:
|
Type : string
|
| Optional |
|
The query parameter which used to query the backend API. |
export interface ProductListRouteParams {
/**
* The query parameter which used to query the backend API.
*/
query?: string;
/**
* The category code which is used to query the backend API.
*/
categoryCode?: string;
/**
* The brand code is actually a category code, which is used to
* query the backend API.
*/
brandCode?: string;
}