Enum OrderTotalPriceCondition
- Namespace
- Dynamicweb.Ecommerce.Orders
- Assembly
- Dynamicweb.Ecommerce.dll
The OrderTotalPriceCondition enumeration defines the logical operators used in an order total price comparison.
public enum OrderTotalPriceCondition
Fields
EqualTo = 1The total price of the order must be equal to the order total price on the discount.
GreaterThan = 5The total price of the order must be greater than the order total price on the discount.
GreaterThanOrEqualTo = 6The total price of the order must be greater than or equal to the order total price on the discount.
LessThan = 3The total price of the order must be lesser than the order total price on the discount.
LessThanOrEqualTo = 4The total price of the order must be lesser than or equal to the order total price on the discount.
NotEqualTo = 2The total price of the order must not be equal to the order total price on the discount.