feature-libs/product-configurator/common/components/configurator-cart-entry-bundle-info/configurator-cart-entry-bundle-info.model.ts
An interface representing the CPQ Line item from order entry.
Properties |
|
| formattedPrice |
formattedPrice:
|
Type : string
|
| Optional |
| formattedQuantity |
formattedQuantity:
|
Type : string
|
| Optional |
| name |
name:
|
Type : string
|
| Optional |
export interface LineItem {
name?: string;
formattedQuantity?: string;
formattedPrice?: string;
}