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

- old
+ new

@@ -1,11 +1,24 @@ -# UltracartClient::ItemContentAttribute - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Attribute name | [optional] -**translated_text_instance_oid** | **Integer** | Attribute translated text instance identifier | [optional] -**type** | **String** | Attribute type | [optional] -**value** | **String** | Attribute value | [optional] - - +# UltracartClient::ItemContentAttribute + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **name** | **String** | Attribute name | [optional] | +| **translated_text_instance_oid** | **Integer** | Attribute translated text instance identifier | [optional] | +| **type** | **String** | Attribute type | [optional] | +| **value** | **String** | Attribute value | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::ItemContentAttribute.new( + name: null, + translated_text_instance_oid: null, + type: null, + value: null +) +``` +