docs/LinkedAccount.md in ultracart_api-3.10.220 vs docs/LinkedAccount.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,10 +1,22 @@
-# UltracartClient::LinkedAccount
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**company** | **String** | The company name of this linked account. | [optional]
-**merchant_id** | **String** | A merchant id that is linked to this account. | [optional]
-**selected** | **BOOLEAN** | If true, this user configuration (permissions, notifications, everything) is cascaded to this linked account. | [optional]
-
-
+# UltracartClient::LinkedAccount
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **company** | **String** | The company name of this linked account. | [optional] |
+| **merchant_id** | **String** | A merchant id that is linked to this account. | [optional] |
+| **selected** | **Boolean** | If true, this user configuration (permissions, notifications, everything) is cascaded to this linked account. | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::LinkedAccount.new(
+ company: null,
+ merchant_id: null,
+ selected: null
+)
+```
+