Method: Falsify::DiscountCode#type
- Defined in:
- lib/falsify/models/order/discount_code.rb
#type ⇒ :fixed_amount, ...
The type of discount.
Default value: fixed_amount.
Valid values:
fixed_amount: Appliesamountas a unit of the store's currency. For example, ifamountis 30 and the store's currency is USD, then 30 USD is deducted from the order total when the discount is applied.percentage: Applies a discount ofamountas a percentage of the order total.shipping: Applies a free shipping discount on orders that have a shipping rate less than or equal toamount. For example, ifamountis 30, then the discount will give the customer free shipping for any shipping rate that is less than or equal to $30.
24 |
# File 'lib/falsify/models/order/discount_code.rb', line 24 enumerize :status, in: [:fixed_amount, :percentage, :shipping] |