docs/AccountResponse.md in moneykit-0.1.13 vs docs/AccountResponse.md in moneykit-0.1.14
- old
+ new
@@ -7,11 +7,13 @@
| **account_id** | **String** | MoneyKit's unique ID for the account. <p>The `account_id` is distinct from the institution's account number. For accounts that may change account numbers from time to time, such as credit cards, MoneyKit attempts to keep the `account_id` constant. However, if MoneyKit can't reconcile the new account data with the old data, the `account_id` may change. | |
| **account_type** | **String** | See <a href=/pages/account_types>Account Types</a> for an explanation of account types. Account types are dot-prefixed with one of `depository`, `investment`, `liability`, or `other`; or the value is `unknown`. <p>**Balances for `liability` accounts are reversed:** negative balances (the amount owed) are reported as positive values. For all other types of accounts, a negative balance indicates the amount owed. | |
| **name** | **String** | The account name, according to the institution. Note that some institutions allow the end user to nickname the account; in such cases this field may be the name assigned by the user. | |
| **account_mask** | **String** | The last four characters (usually digits) of the account number. Note that this mask may be non-unique between accounts. | [optional] |
| **balances** | [**AccountBalances**](AccountBalances.md) | | |
+| **raw_provider_data** | **Object** | Raw account data from the provider. | [optional] |
| **original_id** | **String** | The original ID of this account, if supplied (by you) during an import. | [optional] |
+| **closed** | **Boolean** | True if this account is closed. | [optional] |
## Example
```ruby
require 'moneykit'
@@ -20,9 +22,11 @@
account_id: acc_6Tef269B6ZArSVpYrxtjBV,
account_type: depository.checking,
name: Premier Checking,
account_mask: 3748,
balances: null,
- original_id: null
+ raw_provider_data: null,
+ original_id: null,
+ closed: null
)
```