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

- old
+ new

@@ -1,9 +1,20 @@ -# UltracartClient::CartResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**cart** | [**Cart**](Cart.md) | | [optional] -**errors** | **Array<String>** | Errors that should be displayed to the customer | [optional] - - +# UltracartClient::CartResponse + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **cart** | [**Cart**](Cart.md) | | [optional] | +| **errors** | **Array<String>** | Errors that should be displayed to the customer | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CartResponse.new( + cart: null, + errors: null +) +``` +