Interface ILineItem
Represents a line item in the system, the actual item that is bought.
Inherited Members
Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 13.30.0Syntax
public interface ILineItem : IExtendedProperties
Properties
Code
Gets the code of the variation content the line item represent. This property works as the connection between the line item and the variation content.
Declaration
string Code { get; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
Gets or sets the display name.
Declaration
string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
InventoryTrackingStatus
Gets or sets the inventory tracking status on whether to check inventory.
Declaration
InventoryTrackingStatus InventoryTrackingStatus { get; set; }
Property Value
Type | Description |
---|---|
InventoryTrackingStatus |
IsGift
Gets or sets a value indicating whether the line item is a gift item.
Declaration
bool IsGift { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsInventoryAllocated
Gets or sets a value indicating whether this instance has allocated inventory for the Quantity.
Declaration
bool IsInventoryAllocated { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
LineItemId
Gets the identity of the line item.
Declaration
int LineItemId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ParentOrderGroup
Gets the parent order group.
Declaration
IOrderGroup ParentOrderGroup { get; }
Property Value
Type | Description |
---|---|
IOrderGroup |
PlacedPrice
Gets the price for one item that this line item represent. This property don't take any discounts in consideration.
Declaration
decimal PlacedPrice { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
Quantity
Gets or sets the number of items this line item contains.
Declaration
decimal Quantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
ReturnQuantity
Gets or sets the returned in stock quantity.
Declaration
decimal ReturnQuantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
TaxCategoryId
Gets or sets the tax category id.
Declaration
int? TaxCategoryId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |