docs/CouponFreeShippingWithSubtotal.md in ultracart_api-3.10.220 vs docs/CouponFreeShippingWithSubtotal.md in ultracart_api-4.0.32.rc

- old
+ new

@@ -1,10 +1,22 @@ -# UltracartClient::CouponFreeShippingWithSubtotal - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**currency_code** | **String** | The ISO-4217 three letter currency code the customer is viewing prices in | [optional] -**purchase_amount** | **Float** | The purchase amount to qualify for subtotal discount and free shipping | [optional] -**shipping_methods** | **Array<String>** | One or more shipping methods that may be used with this coupon | [optional] - - +# UltracartClient::CouponFreeShippingWithSubtotal + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **currency_code** | **String** | The ISO-4217 three letter currency code the customer is viewing prices in | [optional] | +| **purchase_amount** | **Float** | The purchase amount to qualify for subtotal discount and free shipping | [optional] | +| **shipping_methods** | **Array<String>** | One or more shipping methods that may be used with this coupon | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponFreeShippingWithSubtotal.new( + currency_code: null, + purchase_amount: null, + shipping_methods: null +) +``` +