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

- old
+ new

@@ -1,18 +1,36 @@ -# UltracartClient::CouponEditorValues - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**affiliates** | [**Array<SimpleValue>**](SimpleValue.md) | affiliates | [optional] -**coupon_types** | **Array<String>** | coupon_types | [optional] -**coupon_types_for_display** | [**Array<CouponType>**](CouponType.md) | coupon_types_for_display | [optional] -**currency_codes** | **Array<String>** | currency_codes | [optional] -**deprecated_themes** | [**Array<SimpleValue>**](SimpleValue.md) | deprecated_themes | [optional] -**item_tags** | **Array<String>** | Item tags | [optional] -**mix_and_match_names** | **Array<String>** | mix_and_match_names | [optional] -**shipping_methods** | **Array<String>** | shipping_methods | [optional] -**storefronts** | [**Array<SimpleValue>**](SimpleValue.md) | storefronts | [optional] -**usable_by** | [**Array<SimpleValue>**](SimpleValue.md) | usable_by | [optional] -**valid_with_other_coupons** | **Array<String>** | valid_with_other_coupons | [optional] - - +# UltracartClient::CouponEditorValues + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **affiliates** | [**Array<SimpleValue>**](SimpleValue.md) | affiliates | [optional] | +| **coupon_types** | **Array<String>** | coupon_types | [optional] | +| **coupon_types_for_display** | [**Array<CouponType>**](CouponType.md) | coupon_types_for_display | [optional] | +| **currency_codes** | **Array<String>** | currency_codes | [optional] | +| **deprecated_themes** | [**Array<SimpleValue>**](SimpleValue.md) | deprecated_themes | [optional] | +| **mix_and_match_names** | **Array<String>** | mix_and_match_names | [optional] | +| **shipping_methods** | **Array<String>** | shipping_methods | [optional] | +| **storefronts** | [**Array<SimpleValue>**](SimpleValue.md) | storefronts | [optional] | +| **usable_by** | [**Array<SimpleValue>**](SimpleValue.md) | usable_by | [optional] | +| **valid_with_other_coupons** | **Array<String>** | valid_with_other_coupons | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CouponEditorValues.new( + affiliates: null, + coupon_types: null, + coupon_types_for_display: null, + currency_codes: null, + deprecated_themes: null, + mix_and_match_names: null, + shipping_methods: null, + storefronts: null, + usable_by: null, + valid_with_other_coupons: null +) +``` +