Increase.IntrafiBalances.IntrafiBalance (Increase v1.0.0)

Copy Markdown View Source

When using IntraFi, each account's balance over the standard FDIC insurance amount is swept to various other institutions. Funds are rebalanced across banks as needed once per business day.

Fields

  • balances - Each entry represents a balance held at a different bank. IntraFi separates the total balance across many participating banks in the network.
  • currency - The ISO 4217 code for the account currency.
  • effective_date - The date this balance reflects.
  • total_balance - The total balance, in minor units of currency. Increase reports this balance to IntraFi daily.
  • type - A constant representing the object's type. For this resource it will always be intrafi_balance.

Summary

Types

t()

@type t() :: %Increase.IntrafiBalances.IntrafiBalance{
  balances: [Increase.IntrafiBalances.IntrafiBalance.Balance.t()],
  currency: String.t(),
  effective_date: Date.t(),
  total_balance: integer(),
  type: String.t()
}