Skip to main content

AccountType

The type of a bank account. Usually indicates the intended purpose of the account.

enum AccountType {
current
savings
credit
loan
investment
other
unknown
}

Values

AccountType.current

An account used for day-to-day transactions.

AccountType.savings

An account used for saving money.

AccountType.credit

An account with a credit facility.

AccountType.loan

An account that tracks the balance of a loan.

AccountType.investment

An account that tracks the balance of an investment.

AccountType.other

An unrecognised account type.

AccountType.unknown

Represents a missing account type.