enum

AccountType

Inherits Enum < Comparable < Value < Object

Constants

Checking = 0
Savings = 1
Cash = 2
CreditCard = 3
LineOfCredit = 4
OtherAsset = 5
OtherLiability = 6
PayPal = 7
MerchantAccount = 8
InvestmentAccount = 9
Mortgage = 10

Instance methods

cash?

Returns true if this enum value equals Cash

Source
checking?

Returns true if this enum value equals Checking

Source
credit_card?

Returns true if this enum value equals CreditCard

Source
investment_account?

Returns true if this enum value equals InvestmentAccount

Source
line_of_credit?

Returns true if this enum value equals LineOfCredit

Source
merchant_account?

Returns true if this enum value equals MerchantAccount

Source
mortgage?

Returns true if this enum value equals Mortgage

Source
other_asset?

Returns true if this enum value equals OtherAsset

Source
other_liability?

Returns true if this enum value equals OtherLiability

Source
pay_pal?

Returns true if this enum value equals PayPal

Source
savings?

Returns true if this enum value equals Savings

Source