docs/ItemVariation.md in ultracart_api-3.10.220 vs docs/ItemVariation.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,12 +1,26 @@
-# UltracartClient::ItemVariation
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**default_text** | **String** | Default text | [optional]
-**default_text_translated_text_instance_oid** | **Integer** | Default text translated text instance id | [optional]
-**name** | **String** | Name | [optional]
-**name_translated_text_instance_oid** | **Integer** | Name translated text instance id | [optional]
-**options** | [**Array<ItemVariationOption>**](ItemVariationOption.md) | Options | [optional]
-
-
+# UltracartClient::ItemVariation
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **default_text** | **String** | Default text | [optional] |
+| **default_text_translated_text_instance_oid** | **Integer** | Default text translated text instance id | [optional] |
+| **name** | **String** | Name | [optional] |
+| **name_translated_text_instance_oid** | **Integer** | Name translated text instance id | [optional] |
+| **options** | [**Array<ItemVariationOption>**](ItemVariationOption.md) | Options | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::ItemVariation.new(
+ default_text: null,
+ default_text_translated_text_instance_oid: null,
+ name: null,
+ name_translated_text_instance_oid: null,
+ options: null
+)
+```
+