BundleCartItem Class

Represents a bundle of other complex cart items in a netFORUM shopping cart.

Definition

Namespace: Ignition.Commerce.Shopping
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public sealed class BundleCartItem : IStandardCartItem, 
	ICartItemIdentity
Inheritance
Object    BundleCartItem
Implements
ICartItemIdentity, IStandardCartItem

Remarks

This type is not directly customizable, but you can still customize the types of any of the complex items in Components.

Properties

BundleProductId The bundle product that this cart item's Components came from.
CartItemId Id of this item.
Components A collection of all of the cart items included in this bundle. These cart items may in turn have other cart items nested under them, depending on their type.
DiscountAmountApplied Amount by which this cart item has been discounted. This amount will always be positive. This amount has already been subtracted from Total, and has not been subtracted from SubTotal.
InvoiceDetails A collection of all of the invoice details represented by this cart item, including invoice details for any cart items nested under this one.
Name This property is always empty for bundles, as netFORUM does not track bundle names after items have been added to the cart.
SubTotal Price of this item, excluding any taxes, discounts, or shipping charges.
TaxApplied Amount of tax applied to this cart item. This amount has already been included in Total, and is excluded from SubTotal.
Total Total effective price of this item. See Remarks for details on all that is included.

See Also