docs/EmailCampaignResponse.md in ultracart_api-3.10.220 vs docs/EmailCampaignResponse.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,12 +1,26 @@
-# UltracartClient::EmailCampaignResponse
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**campaign** | [**EmailCampaign**](EmailCampaign.md) | | [optional]
-**error** | [**Error**](Error.md) | | [optional]
-**metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
-**success** | **BOOLEAN** | Indicates if API call was successful | [optional]
-**warning** | [**Warning**](Warning.md) | | [optional]
-
-
+# UltracartClient::EmailCampaignResponse
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **campaign** | [**EmailCampaign**](EmailCampaign.md) | | [optional] |
+| **error** | [**Error**](Error.md) | | [optional] |
+| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
+| **success** | **Boolean** | Indicates if API call was successful | [optional] |
+| **warning** | [**Warning**](Warning.md) | | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::EmailCampaignResponse.new(
+ campaign: null,
+ error: null,
+ metadata: null,
+ success: null,
+ warning: null
+)
+```
+