Sha256: cf10e95de802f27320081e0c0c99239728b1a4a6783d99d9da04dab4e96b7122

Contents?: true

Size: 1.3 KB

Versions: 8

Compression:

Stored size: 1.3 KB

Contents

# MoneyKit::AccountBalances

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **currency** | [**Currency**](Currency.md) |  |  |
| **available** | **Float** | The amount of funds available for use.  Not all institutions report the available balance.             <p>Note that the available balance typically does not include overdraft limits. | [optional] |
| **current** | **Float** | The total amount of funds in the account.             <p>For credit or loan accounts, a positive number indicates the amount owed by the account holder.             If the balance is negative (this is rare), this indicates an amount owed **to** the account holder.             <p>For depository or investment accounts, a positive number is the asset value of the account.             If the balance is negative (this is rare), this indicates an overdraft or margin condition. | [optional] |
| **limit** | **Float** | The credit limit on the account.  Typically this exists only for credit-type accounts.             <p>In some cases, this may represent the overdraft limit for depository accounts. | [optional] |

## Example

```ruby
require 'moneykit'

instance = MoneyKit::AccountBalances.new(
  currency: null,
  available: 340.12,
  current: 445.89,
  limit: 500
)
```

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
moneykit-0.1.5 docs/AccountBalances.md
moneykit-0.1.4 docs/AccountBalances.md
moneykit-0.1.3 docs/AccountBalances.md
moneykit-0.1.2 docs/AccountBalances.md
moneykit-0.1.1 docs/AccountBalances.md
moneykit-0.1.0 docs/AccountBalances.md
moneykit-0.1.0.alpha.2 docs/AccountBalances.md
moneykit-0.1.0.alpha.1 docs/AccountBalances.md