View Source Plaid.Account (elixir_plaid v1.2.1)

Plaid Account schema.

Link to this section Summary

Link to this section Types

Specs

t() :: %Plaid.Account{
  account_id: String.t(),
  balances: Plaid.Account.Balances.t(),
  days_available: non_neg_integer() | nil,
  historical_balances: [Plaid.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
}