docs/CouponFreeShippingWithItemsPurchase.md in ultracart_api-3.10.220 vs docs/CouponFreeShippingWithItemsPurchase.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,9 +1,20 @@
-# UltracartClient::CouponFreeShippingWithItemsPurchase
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**items** | **Array<String>** | A list of items of which at least one must be purchased for coupon to be valid. | [optional]
-**shipping_methods** | **Array<String>** | One or more shipping methods that may receive this discount | [optional]
-
-
+# UltracartClient::CouponFreeShippingWithItemsPurchase
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **items** | **Array<String>** | A list of items of which at least one must be purchased for coupon to be valid. | [optional] |
+| **shipping_methods** | **Array<String>** | One or more shipping methods that may receive this discount | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CouponFreeShippingWithItemsPurchase.new(
+ items: null,
+ shipping_methods: null
+)
+```
+