Table of Contents

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 = 3

Minimum 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 = 0

No minimum requirement. A cart with at least one counted item qualifies.

[EnumStringRepresentation("price")] Price = 1

Minimum 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 = 2

Minimum quantity of items (e.g., 5 items).

The requirement counts the total quantity of the counted cart items.

See Also