Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IStockPlacement

Marks if a catalog entry has inventory data.

Namespace: EPiServer.Commerce.Catalog.ContentTypes
Assembly: EPiServer.Business.Commerce.dll
Version: 14.26.0
Syntax
public interface IStockPlacement

Properties

InventoryReference

Gets or sets the product link, which holds inventory data.

Declaration
ContentReference InventoryReference { get; set; }
Property Value
Type Description
EPiServer.Core.ContentReference

MaxQuantity

Gets or sets the maximum quantity.

Declaration
Nullable<Decimal> MaxQuantity { get; set; }
Property Value
Type Description
System.Nullable<System.Decimal>

MinQuantity

Gets or sets the minimum quantity.

Declaration
Nullable<Decimal> MinQuantity { get; set; }
Property Value
Type Description
System.Nullable<System.Decimal>

ShippingPackageId

Gets or sets the shipping package identifier.

Declaration
Nullable<int> ShippingPackageId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

The shipping package identifier.

TrackInventory

Gets or sets a value indicating whether inventory should be tracked.

Declaration
bool TrackInventory { get; set; }
Property Value
Type Description
System.Boolean

Weight

Gets or sets the weight.

Declaration
double Weight { get; set; }
Property Value
Type Description
System.Double

Extension Methods