Plaid.Accounts.Account (elixir_plaid v0.1.1) View Source

Plaid Account schema.

Link to this section Summary

Link to this section Types

Specs

t() :: %Plaid.Accounts.Account{
  account_id: String.t(),
  balances: Plaid.Accounts.Account.Balances.t(),
  days_available: non_neg_integer() | nil,
  historical_balances: [Plaid.Accounts.Account.HistoricalBalances.t()] | nil,
  item: Plaid.Item.t(),
  mask: String.t() | nil,
  name: String.t(),
  official_name: String.t() | nil,
  owners: [Plaid.Identity.t()] | nil,
  ownership_type: String.t() | nil,
  subtype: String.t(),
  transactions: [Plaid.Transactions.Transaction.t()] | nil,
  type: String.t(),
  verification_status: String.t() | nil
}