Alokai

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

NameRequiredTypeDescription
productCodeRequiredstringProduct code. {string} BundleStarter
quantityRequirednumberQuantity of the product added to cart {number} BundleStarter
templateIdRequiredstringId of a template to create a bundle {string} BundleStarter

On this page