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

- old
+ new

@@ -1,12 +1,26 @@ -# UltracartClient::CouponFreeItemsWithItemPurchase - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**free_item** | **String** | The item id of the free item that will be received when the required mix and match group quantity is purchased. | [optional] -**free_quantity** | **Integer** | The quantity of free item that will be received. | [optional] -**limit** | **Integer** | The limit of free items that may be received when purchasing multiple items | [optional] -**required_purchase_item** | **String** | Required item that must be purchased for coupon to be valid | [optional] -**required_purchase_quantity** | **Integer** | Required quantity of mix and match group items that must be purchased for coupon to be valid | [optional] - - +# UltracartClient::CouponFreeItemsWithItemPurchase + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **free_item** | **String** | The item id of the free item that will be received when the required mix and match group quantity is purchased. | [optional] | +| **free_quantity** | **Integer** | The quantity of free item that will be received. | [optional] | +| **limit** | **Integer** | The limit of free items that may be received when purchasing multiple items | [optional] | +| **required_purchase_item** | **String** | Required item that must be purchased for coupon to be valid | [optional] | +| **required_purchase_quantity** | **Integer** | Required quantity of mix and match group items that must be purchased for coupon to be valid | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponFreeItemsWithItemPurchase.new( + free_item: null, + free_quantity: null, + limit: null, + required_purchase_item: null, + required_purchase_quantity: null +) +``` +