docs/CouponTieredAmountOffSubtotal.md in ultracart_api-3.10.220 vs docs/CouponTieredAmountOffSubtotal.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,9 +1,20 @@
-# UltracartClient::CouponTieredAmountOffSubtotal
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**items** | **Array<String>** | An optional list of items of which a quantity of one or many must be purchased for coupon to be valid. If empty, all items apply toward subtotal amount. | [optional]
-**tiers** | [**Array<CouponTierAmount>**](CouponTierAmount.md) | A list of discount tiers. | [optional]
-
-
+# UltracartClient::CouponTieredAmountOffSubtotal
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **items** | **Array<String>** | An optional list of items of which a quantity of one or many must be purchased for coupon to be valid. If empty, all items apply toward subtotal amount. | [optional] |
+| **tiers** | [**Array<CouponTierAmount>**](CouponTierAmount.md) | A list of discount tiers. | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CouponTieredAmountOffSubtotal.new(
+ items: null,
+ tiers: null
+)
+```
+