=begin #The Plaid API #The Plaid REST API. Please see https://plaid.com/docs/api for more details. The version of the OpenAPI document: 2020-09-14_1.105.1 Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.1.1 =end require 'date' require 'time' module Plaid class AccountSubtype N401A = "401a".freeze N401K = "401k".freeze N403_B = "403B".freeze N457B = "457b".freeze N529 = "529".freeze BROKERAGE = "brokerage".freeze CASH_ISA = "cash isa".freeze EDUCATION_SAVINGS_ACCOUNT = "education savings account".freeze EBT = "ebt".freeze FIXED_ANNUITY = "fixed annuity".freeze GIC = "gic".freeze HEALTH_REIMBURSEMENT_ARRANGEMENT = "health reimbursement arrangement".freeze HSA = "hsa".freeze ISA = "isa".freeze IRA = "ira".freeze LIF = "lif".freeze LIFE_INSURANCE = "life insurance".freeze LIRA = "lira".freeze LRIF = "lrif".freeze LRSP = "lrsp".freeze NON_TAXABLE_BROKERAGE_ACCOUNT = "non-taxable brokerage account".freeze OTHER = "other".freeze OTHER_INSURANCE = "other insurance".freeze OTHER_ANNUITY = "other annuity".freeze PRIF = "prif".freeze RDSP = "rdsp".freeze RESP = "resp".freeze RLIF = "rlif".freeze RRIF = "rrif".freeze PENSION = "pension".freeze PROFIT_SHARING_PLAN = "profit sharing plan".freeze RETIREMENT = "retirement".freeze ROTH = "roth".freeze ROTH_401K = "roth 401k".freeze RRSP = "rrsp".freeze SEP_IRA = "sep ira".freeze SIMPLE_IRA = "simple ira".freeze SIPP = "sipp".freeze STOCK_PLAN = "stock plan".freeze THRIFT_SAVINGS_PLAN = "thrift savings plan".freeze TFSA = "tfsa".freeze TRUST = "trust".freeze UGMA = "ugma".freeze UTMA = "utma".freeze VARIABLE_ANNUITY = "variable annuity".freeze CREDIT_CARD = "credit card".freeze PAYPAL = "paypal".freeze CD = "cd".freeze CHECKING = "checking".freeze SAVINGS = "savings".freeze MONEY_MARKET = "money market".freeze PREPAID = "prepaid".freeze AUTO = "auto".freeze BUSINESS = "business".freeze COMMERCIAL = "commercial".freeze CONSTRUCTION = "construction".freeze CONSUMER = "consumer".freeze HOME_EQUITY = "home equity".freeze LOAN = "loan".freeze MORTGAGE = "mortgage".freeze OVERDRAFT = "overdraft".freeze LINE_OF_CREDIT = "line of credit".freeze STUDENT = "student".freeze CASH_MANAGEMENT = "cash management".freeze KEOGH = "keogh".freeze MUTUAL_FUND = "mutual fund".freeze RECURRING = "recurring".freeze REWARDS = "rewards".freeze SAFE_DEPOSIT = "safe deposit".freeze SARSEP = "sarsep".freeze PAYROLL = "payroll".freeze NULL = "null".freeze # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value 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 end end