Sha256: 9331685263d7d591bfc32f750086660b08a0a59b902c84e898f2dc51b85938a9

Contents?: true

Size: 1.94 KB

Versions: 3

Compression:

Stored size: 1.94 KB

Contents

# MoneyKit::AccountResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **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) |  |  |
| **original_id** | **String** | The original ID of this account, if supplied (by you) during an import. | [optional] |

## Example

```ruby
require 'moneykit'

instance = MoneyKit::AccountResponse.new(
  account_id: acc_6Tef269B6ZArSVpYrxtjBV,
  account_type: depository.checking,
  name: Premier Checking,
  account_mask: 3748,
  balances: null,
  original_id: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
moneykit-0.1.13 docs/AccountResponse.md
moneykit-0.1.12 docs/AccountResponse.md
moneykit-0.1.11 docs/AccountResponse.md