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

require 'synctera_ruby_sdk'

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