Class: Wallee::OneClickPaymentMode
- Inherits:
-
Object
- Object
- Wallee::OneClickPaymentMode
- Defined in:
- lib/wallee-ruby-sdk/models/one_click_payment_mode.rb
Constant Summary collapse
- DISABLED =
'DISABLED'.freeze
- ALLOW =
'ALLOW'.freeze
- FORCE =
'FORCE'.freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
30 31 32 33 34 |
# File 'lib/wallee-ruby-sdk/models/one_click_payment_mode.rb', line 30 def build_from_hash(value) constantValues = OneClickPaymentMode.constants.select { |c| OneClickPaymentMode::const_get(c) == value } raise "Invalid ENUM value #{value} for class #OneClickPaymentMode" if constantValues.empty? value end |