docs/CartUpsellAfter.md in ultracart_api-3.10.220 vs docs/CartUpsellAfter.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,10 +1,22 @@
-# UltracartClient::CartUpsellAfter
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**finalize_after_dts** | **String** | The date/time after which the cart will finalize into an order. | [optional]
-**finalize_after_minutes** | **Integer** | The amount of inactivity in minutes after which the cart should be finalized into an order. This will calculate the finalize_after_dts field. | [optional]
-**upsell_path_code** | **String** | Upsell path code | [optional]
-
-
+# UltracartClient::CartUpsellAfter
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **finalize_after_dts** | **String** | The date/time after which the cart will finalize into an order. | [optional] |
+| **finalize_after_minutes** | **Integer** | The amount of inactivity in minutes after which the cart should be finalized into an order. This will calculate the finalize_after_dts field. | [optional] |
+| **upsell_path_code** | **String** | Upsell path code | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CartUpsellAfter.new(
+ finalize_after_dts: null,
+ finalize_after_minutes: null,
+ upsell_path_code: null
+)
+```
+