docs/EmailOrder.md in ultracart_api-3.10.220 vs docs/EmailOrder.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,11 +1,24 @@
-# UltracartClient::EmailOrder
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**email** | **String** | email | [optional]
-**order_dts** | **String** | order_dts | [optional]
-**order_id** | **String** | order_id | [optional]
-**total** | [**Currency**](Currency.md) | | [optional]
-
-
+# UltracartClient::EmailOrder
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **email** | **String** | email | [optional] |
+| **order_dts** | **String** | order_dts | [optional] |
+| **order_id** | **String** | order_id | [optional] |
+| **total** | [**Currency**](Currency.md) | | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::EmailOrder.new(
+ email: null,
+ order_dts: null,
+ order_id: null,
+ total: null
+)
+```
+