Increase.Accounts.Account (Increase v1.0.0)

Copy Markdown View Source

Accounts are your bank accounts with Increase. They store money, receive transfers, and send payments. They earn interest and have depository insurance.

Fields

  • id - The Account identifier.
  • account_revenue_rate - The account revenue rate currently being earned on the account, as a string containing a decimal number. For example, a 1% account revenue rate would be represented as "0.01". Account revenue is a type of non-interest income accrued on the account.
  • bank - The bank the Account is with.
  • closed_at - The ISO 8601 time at which the Account was closed.
  • created_at - The ISO 8601 time at which the Account was created.
  • currency - The ISO 4217 code for the Account currency.
  • entity_id - The identifier for the Entity the Account belongs to.
  • funding - Whether the Account is funded by a loan or by deposits.
  • idempotency_key - The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
  • informational_entity_id - The identifier of an Entity that, while not owning the Account, is associated with its activity.
  • interest_rate - The interest rate currently being earned on the account, as a string containing a decimal number. For example, a 1% interest rate would be represented as "0.01".
  • loan - The Account's loan-related information, if the Account is a loan account.
  • name - The name you choose for the Account.
  • program_id - The identifier of the Program determining the compliance and commercial terms of this Account.
  • status - The status of the Account.
  • type - A constant representing the object's type. For this resource it will always be account.

Summary

Types

t()

@type t() :: %Increase.Accounts.Account{
  account_revenue_rate: String.t() | nil,
  bank: String.t(),
  closed_at: DateTime.t() | nil,
  created_at: DateTime.t(),
  currency: String.t(),
  entity_id: String.t(),
  funding: String.t(),
  id: String.t(),
  idempotency_key: String.t() | nil,
  informational_entity_id: String.t() | nil,
  interest_rate: String.t(),
  loan: Increase.Accounts.Account.Loan.t() | nil,
  name: String.t(),
  program_id: String.t(),
  status: String.t(),
  type: String.t()
}