Enum FreeShippingMinimumRequirementType
- Namespace
- Kentico.Xperience.Admin.DigitalCommerce
- Assembly
- Kentico.Xperience.Admin.DigitalCommerce.Shared.dll
Minimum purchase requirement type of a free shipping promotion rule. Used to determine what the cart must meet before the promotion applies.
[FormComponentStringValueConverter<FreeShippingMinimumRequirementType>]
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum FreeShippingMinimumRequirementType
- Extension Methods
Fields
[EnumStringRepresentation("itemprice")] ItemPrice = 3Minimum item price (e.g., an item that costs $100 or more).
The requirement counts each cart item separately. One item that reaches the value is sufficient.
[EnumStringRepresentation("none")] None = 0No minimum requirement. A cart with at least one counted item qualifies.
[EnumStringRepresentation("price")] Price = 1Minimum purchase amount (e.g., $100).
The requirement counts the sum of the line subtotals after all discounts. The sum includes the share of the order discount.
[EnumStringRepresentation("quantity")] Quantity = 2Minimum quantity of items (e.g., 5 items).
The requirement counts the total quantity of the counted cart items.