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

- old
+ new

@@ -1,11 +1,24 @@ -# UltracartClient::CartItemPhysical - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**height** | [**Distance**](Distance.md) | | [optional] -**length** | [**Distance**](Distance.md) | | [optional] -**weight** | [**Weight**](Weight.md) | | [optional] -**width** | [**Distance**](Distance.md) | | [optional] - - +# UltracartClient::CartItemPhysical + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **height** | [**Distance**](Distance.md) | | [optional] | +| **length** | [**Distance**](Distance.md) | | [optional] | +| **weight** | [**Weight**](Weight.md) | | [optional] | +| **width** | [**Distance**](Distance.md) | | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CartItemPhysical.new( + height: null, + length: null, + weight: null, + width: null +) +``` +