BundleStarter
Mandatory data required to start a bundle. This includes the templateId of the bundle, the productCode, and the quantity of the product itself. BundleStarter
export interface BundleStarter {
'productCode': string;
'quantity': number;
'templateId': string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
productCode | Required | string | Product code. {string} BundleStarter |
quantity | Required | number | Quantity of the product added to cart {number} BundleStarter |
templateId | Required | string | Id of a template to create a bundle {string} BundleStarter |