Class: Plaid::InvestmentAccountSubtype

Inherits:
Object
  • Object
show all
Defined in:
lib/plaid/models/investment_account_subtype.rb

Constant Summary collapse

N529 =
"529".freeze
N401A =
"401a".freeze
N401K =
"401k".freeze
N403_B =
"403B".freeze
N457B =
"457b".freeze
BROKERAGE =
"brokerage".freeze
CASH_ISA =
"cash isa".freeze
CRYPTO_EXCHANGE =
"crypto exchange".freeze
EDUCATION_SAVINGS_ACCOUNT =
"education savings account".freeze
FIXED_ANNUITY =
"fixed annuity".freeze
GIC =
"gic".freeze
HEALTH_REIMBURSEMENT_ARRANGEMENT =
"health reimbursement arrangement".freeze
HSA =
"hsa".freeze
IRA =
"ira".freeze
ISA =
"isa".freeze
KEOGH =
"keogh".freeze
LIF =
"lif".freeze
LIFE_INSURANCE =
"life insurance".freeze
LIRA =
"lira".freeze
LRIF =
"lrif".freeze
LRSP =
"lrsp".freeze
MUTUAL_FUND =
"mutual fund".freeze
NON_CUSTODIAL_WALLET =
"non-custodial wallet".freeze
NON_TAXABLE_BROKERAGE_ACCOUNT =
"non-taxable brokerage account".freeze
OTHER =
"other".freeze
OTHER_ANNUITY =
"other annuity".freeze
OTHER_INSURANCE =
"other insurance".freeze
PENSION =
"pension".freeze
PRIF =
"prif".freeze
PROFIT_SHARING_PLAN =
"profit sharing plan".freeze
QSHR =
"qshr".freeze
RDSP =
"rdsp".freeze
RESP =
"resp".freeze
RETIREMENT =
"retirement".freeze
RLIF =
"rlif".freeze
ROTH =
"roth".freeze
ROTH_401K =
"roth 401k".freeze
RRIF =
"rrif".freeze
RRSP =
"rrsp".freeze
SARSEP =
"sarsep".freeze
SEP_IRA =
"sep ira".freeze
SIMPLE_IRA =
"simple ira".freeze
SIPP =
"sipp".freeze
STOCK_PLAN =
"stock plan".freeze
TFSA =
"tfsa".freeze
TRUST =
"trust".freeze
UGMA =
"ugma".freeze
UTMA =
"utma".freeze
VARIABLE_ANNUITY =
"variable annuity".freeze
ALL =
"all".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



72
73
74
# File 'lib/plaid/models/investment_account_subtype.rb', line 72

def self.build_from_hash(value)
  new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



79
80
81
82
83
84
# File 'lib/plaid/models/investment_account_subtype.rb', line 79

def build_from_hash(value)
  # We do not validate that the value is one of the enums set in the OpenAPI
  # file because we want to be able to add to our list of enums without
  # breaking this client library.
  value
end