Class: Plaid::ItemAuthMethod
- Inherits:
-
Object
- Object
- Plaid::ItemAuthMethod
- Defined in:
- lib/plaid/models/item_auth_method.rb
Constant Summary collapse
- INSTANT_AUTH =
"INSTANT_AUTH".freeze
- INSTANT_MATCH =
"INSTANT_MATCH".freeze
- AUTOMATED_MICRODEPOSITS =
"AUTOMATED_MICRODEPOSITS".freeze
- SAME_DAY_MICRODEPOSITS =
"SAME_DAY_MICRODEPOSITS".freeze
- INSTANT_MICRODEPOSITS =
"INSTANT_MICRODEPOSITS".freeze
- DATABASE_MATCH =
"DATABASE_MATCH".freeze
- DATABASE_INSIGHTS =
"DATABASE_INSIGHTS".freeze
- TRANSFER_MIGRATED =
"TRANSFER_MIGRATED".freeze
- INVESTMENTS_FALLBACK =
"INVESTMENTS_FALLBACK".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
31 32 33 |
# File 'lib/plaid/models/item_auth_method.rb', line 31 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
38 39 40 41 42 43 |
# File 'lib/plaid/models/item_auth_method.rb', line 38 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 |