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

- old
+ new

@@ -1,9 +1,20 @@ -# UltracartClient::CouponTierItemDiscount - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**discount_amount** | **Float** | The amount of subtotal discount | [optional] -**items** | **Array<String>** | A list of items which will receive this discount. | [optional] - - +# UltracartClient::CouponTierItemDiscount + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **discount_amount** | **Float** | The amount of subtotal discount | [optional] | +| **items** | **Array<String>** | A list of items which will receive this discount. | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponTierItemDiscount.new( + discount_amount: null, + items: null +) +``` +