Sha256: 13b5fcf3bc3f22b97169cd2dbf89206b196f71320a28b5d727dc0b9154de1e70

Contents?: true

Size: 1.31 KB

Versions: 4

Compression:

Stored size: 1.31 KB

Contents

# SyncteraRubySdk::ExternalAccountBalance

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **available** | **Integer** | The amount of funds available to be withdrawn from the account, as determined by the financial institution.  This is an integer in the minor currency unit (e.g. cents): 1025 means $10.25.  | [optional] |
| **currency** | **String** | ISO 4217 alphabetic currency code |  |
| **current** | **Integer** | For a `DEPOSITORY` account, this is the total amount of funds in the account.  For a `CREDIT` account, this is the amount owing. If negative, the lender owes the account holder.  This is an integer in the minor currency unit (e.g. cents): -2500 means $25.00 owed to the account holder.  | [optional] |
| **limit** | **Integer** | For `DEPOSITORY` accounts, this is the pre-arranged overdraft limit, commonly used in Europe. In North America this is typically not set for depository accounts.  For `CREDIT` accounts, this is the credit limit on the account.  This is an integer in the minor currency unit (e.g. cents): 10000 means $100.00  | [optional] |

## Example

```ruby
require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::ExternalAccountBalance.new(
  available: 1025,
  currency: USD,
  current: -2500,
  limit: 10000
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synctera_ruby_sdk-1.1.3 docs/ExternalAccountBalance.md
synctera_ruby_sdk-1.1.2 docs/ExternalAccountBalance.md
synctera_ruby_sdk-1.1.1 docs/ExternalAccountBalance.md
synctera_ruby_sdk-1.0.0 docs/ExternalAccountBalance.md