Class: ThePlaidApi::ItemCreateAuthentication
- Inherits:
-
Object
- Object
- ThePlaidApi::ItemCreateAuthentication
- Defined in:
- lib/the_plaid_api/models/item_create_authentication.rb
Overview
Enum representing the entity authenticating the user.
Constant Summary collapse
- ITEM_CREATE_AUTHENTICATION =
[ # TODO: Write general description for UNKNOWN UNKNOWN = 'UNKNOWN'.freeze, # TODO: Write general description for DATA_PARTNER DATA_PARTNER = 'DATA_PARTNER'.freeze, # TODO: Write general description for PLAID PLAID = 'PLAID'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.from_value(value, default_value = UNKNOWN) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/the_plaid_api/models/item_create_authentication.rb', line 26 def self.from_value(value, default_value = UNKNOWN) return default_value if value.nil? str = value.to_s.strip case str.downcase when 'unknown' then UNKNOWN when 'data_partner' then DATA_PARTNER when 'plaid' then PLAID else default_value end end |
.validate(value) ⇒ Object
20 21 22 23 24 |
# File 'lib/the_plaid_api/models/item_create_authentication.rb', line 20 def self.validate(value) return false if value.nil? ITEM_CREATE_AUTHENTICATION.include?(value) end |