Increase.Accounts.BalanceLookup (Increase v1.0.0)

Copy Markdown View Source

Represents a request to lookup the balance of an Account at a given point in time.

Fields

  • account_id - The identifier for the account for which the balance was queried.
  • available_balance - The Account's available balance, representing the current balance less any open Pending Transactions on the Account.
  • current_balance - The Account's current balance, representing the sum of all posted Transactions on the Account.
  • loan - The loan balances for the Account.
  • type - A constant representing the object's type. For this resource it will always be balance_lookup.

Summary

Types

t()

@type t() :: %Increase.Accounts.BalanceLookup{
  account_id: String.t(),
  available_balance: integer(),
  current_balance: integer(),
  loan: Increase.Accounts.BalanceLookup.Loan.t() | nil,
  type: String.t()
}