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

- old
+ new

@@ -1,11 +1,24 @@ -# UltracartClient::CustomerOrdersSummary - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**first_order_dts** | **String** | First order date | [optional] -**last_order_dts** | **String** | Last order date | [optional] -**order_count** | **Integer** | Total number of orders | [optional] -**total** | **Float** | Total amount associated with the orders | [optional] - - +# UltracartClient::CustomerOrdersSummary + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **first_order_dts** | **String** | First order date | [optional] | +| **last_order_dts** | **String** | Last order date | [optional] | +| **order_count** | **Integer** | Total number of orders | [optional] | +| **total** | **Float** | Total amount associated with the orders | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CustomerOrdersSummary.new( + first_order_dts: null, + last_order_dts: null, + order_count: null, + total: null +) +``` +