Class: ThePlaidApi::TransferAuthorizationGuaranteeDecision
- Inherits:
-
Object
- Object
- ThePlaidApi::TransferAuthorizationGuaranteeDecision
- Defined in:
- lib/the_plaid_api/models/transfer_authorization_guarantee_decision.rb
Overview
Indicates whether the transfer is guaranteed by Plaid (Guarantee customers only). This field will contain either ‘GUARANTEED` or `NOT_GUARANTEED` indicating whether Plaid will guarantee the transfer.
Constant Summary collapse
- TRANSFER_AUTHORIZATION_GUARANTEE_DECISION =
[ # TODO: Write general description for GUARANTEED GUARANTEED = 'GUARANTEED'.freeze, # TODO: Write general description for NOT_GUARANTEED NOT_GUARANTEED = 'NOT_GUARANTEED'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.from_value(value, default_value = GUARANTEED) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/the_plaid_api/models/transfer_authorization_guarantee_decision.rb', line 25 def self.from_value(value, default_value = GUARANTEED) return default_value if value.nil? str = value.to_s.strip case str.downcase when 'guaranteed' then GUARANTEED when 'not_guaranteed' then NOT_GUARANTEED else default_value end end |
.validate(value) ⇒ Object
19 20 21 22 23 |
# File 'lib/the_plaid_api/models/transfer_authorization_guarantee_decision.rb', line 19 def self.validate(value) return false if value.nil? TRANSFER_AUTHORIZATION_GUARANTEE_DECISION.include?(value) end |