docs/CouponPercentOffRetailPriceItems.md in ultracart_api-3.10.220 vs docs/CouponPercentOffRetailPriceItems.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,11 +1,24 @@
-# UltracartClient::CouponPercentOffRetailPriceItems
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**discount_percent** | **Float** | The percentage of subtotal discount | [optional]
-**excluded_items** | **Array<String>** | A list of items which cannot be discounted. | [optional]
-**items** | **Array<String>** | An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items. | [optional]
-**limit** | **Integer** | The (optional) maximum quantity of discounted items. | [optional]
-
-
+# UltracartClient::CouponPercentOffRetailPriceItems
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **discount_percent** | **Float** | The percentage of subtotal discount | [optional] |
+| **excluded_items** | **Array<String>** | A list of items which cannot be discounted. | [optional] |
+| **items** | **Array<String>** | An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items. | [optional] |
+| **limit** | **Integer** | The (optional) maximum quantity of discounted items. | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CouponPercentOffRetailPriceItems.new(
+ discount_percent: null,
+ excluded_items: null,
+ items: null,
+ limit: null
+)
+```
+