Interface ILineItemInventory
Represents the inventory information to a line item.
Namespace: Mediachase.Commerce.Orders
Assembly: Mediachase.Commerce.dll
Version: 13.30.0Syntax
[Obsolete("This interface is no longer used. Use IInventoryService for managing inventories instead. Will remain at least until June 2019.")]
public interface ILineItemInventory
Properties
AllowBackordersAndPreorders
Gets or sets a value indicating whether [allow backorders and preorders].
Declaration
bool AllowBackordersAndPreorders { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
BackorderQuantity
Gets or sets the backorder quantity.
Declaration
decimal BackorderQuantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal | The backorder quantity. |
Code
Gets the catalog entry code.
Declaration
string Code { get; }
Property Value
Type | Description |
---|---|
System.String | The catalog entry code. |
InStockQuantity
Gets or sets the in stock quantity.
Declaration
decimal InStockQuantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal | The in stock quantity. |
InventoryStatus
Gets or sets the inventory status.
Declaration
int InventoryStatus { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The inventory status. |
MaxQuantity
Gets or sets the max quantity.
Declaration
decimal MaxQuantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal | The max quantity. |
MinQuantity
Gets or sets the min quantity.
Declaration
decimal MinQuantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal | The min quantity. |
PreorderQuantity
Gets or sets the preorder quantity.
Declaration
decimal PreorderQuantity { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal | The preorder quantity. |