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

- old
+ new

@@ -1,13 +1,28 @@ -# UltracartClient::CouponResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**coupon** | [**Coupon**](Coupon.md) | | [optional] -**error** | [**Error**](Error.md) | | [optional] -**items_invalid_for_coupons** | **Array<String>** | Items invalid for coupons. These will display as warnings within the UI. | [optional] -**metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] -**success** | **BOOLEAN** | Indicates if API call was successful | [optional] -**warning** | [**Warning**](Warning.md) | | [optional] - - +# UltracartClient::CouponResponse + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **coupon** | [**Coupon**](Coupon.md) | | [optional] | +| **error** | [**Error**](Error.md) | | [optional] | +| **items_invalid_for_coupons** | **Array<String>** | Items invalid for coupons. These will display as warnings within the UI. | [optional] | +| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] | +| **success** | **Boolean** | Indicates if API call was successful | [optional] | +| **warning** | [**Warning**](Warning.md) | | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponResponse.new( + coupon: null, + error: null, + items_invalid_for_coupons: null, + metadata: null, + success: null, + warning: null +) +``` +