public interface IStandardCartItem : ICartItemIdentity
Public Interface IStandardCartItem
Inherits ICartItemIdentity
public interface class IStandardCartItem : ICartItemIdentity
type IStandardCartItem =
interface
interface ICartItemIdentity
end
CartItemId |
Id of this item.
(Inherited from ICartItemIdentity) |
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 | A high-level name of this cart item. Generally taken from the name of the most important invoice detail of the item. |
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. |