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

- old
+ new

@@ -1,9 +1,20 @@ -# UltracartClient::CouponPercentOffShipping - -## 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 used with this coupon | [optional] - - +# UltracartClient::CouponPercentOffShipping + +## 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 used with this coupon | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponPercentOffShipping.new( + discount_percent: null, + shipping_methods: null +) +``` +