docs/CartAffirmCheckoutResponse.md in ultracart_api-3.10.220 vs docs/CartAffirmCheckoutResponse.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,9 +1,20 @@
-# UltracartClient::CartAffirmCheckoutResponse
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**checkout_json** | **String** | Checkout JSON object | [optional]
-**errors** | **Array<String>** | Errors that should be displayed to the customer | [optional]
-
-
+# UltracartClient::CartAffirmCheckoutResponse
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **checkout_json** | **String** | Checkout JSON object | [optional] |
+| **errors** | **Array<String>** | Errors that should be displayed to the customer | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CartAffirmCheckoutResponse.new(
+ checkout_json: null,
+ errors: null
+)
+```
+