Class: Plaid::LoanAccountSubtype
- Inherits:
-
Object
- Object
- Plaid::LoanAccountSubtype
- Defined in:
- lib/plaid/models/loan_account_subtype.rb
Constant Summary collapse
- 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
- LINE_OF_CREDIT =
"line of credit".freeze
- STUDENT =
"student".freeze
- OTHER =
"other".freeze
- ALL =
"all".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
34 35 36 |
# File 'lib/plaid/models/loan_account_subtype.rb', line 34 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
41 42 43 44 45 46 |
# File 'lib/plaid/models/loan_account_subtype.rb', line 41 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 |