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

- old
+ new

@@ -1,9 +1,20 @@ -# UltracartClient::CouponPercentOffSubtotalAndFreeShipping - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**discount_percent** | **Float** | The percentage of subtotal discount | [optional] -**shipping_methods** | **Array<String>** | One or more shipping methods that may be free | [optional] - - +# UltracartClient::CouponPercentOffSubtotalAndFreeShipping + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **discount_percent** | **Float** | The percentage of subtotal discount | [optional] | +| **shipping_methods** | **Array<String>** | One or more shipping methods that may be free | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponPercentOffSubtotalAndFreeShipping.new( + discount_percent: null, + shipping_methods: null +) +``` +