integration-libs/cds/src/merchandising/cms-components/merchandising-carousel/model/merchandising-carousel.model.ts
Properties |
| backgroundColor |
backgroundColor:
|
Type : string | Object | undefined
|
| id |
id:
|
Type : string
|
| items$ |
items$:
|
Type : Observable<MerchandisingProduct>[]
|
| metadata |
metadata:
|
Type : MerchandisingMetadata
|
| productIds |
productIds:
|
Type : string[]
|
| textColor |
textColor:
|
Type : string | Object | undefined
|
| title |
title:
|
Type : string
|
import { Observable } from 'rxjs';
import {
MerchandisingMetadata,
MerchandisingProduct,
} from '../../../model/index';
export interface MerchandisingCarouselModel {
id: string;
items$: Observable<MerchandisingProduct>[];
productIds: string[];
metadata: MerchandisingMetadata;
title: string;
backgroundColor: string | Object | undefined;
textColor: string | Object | undefined;
}