Class: Wallee::TransactionCompletionMode
- Inherits:
-
Object
- Object
- Wallee::TransactionCompletionMode
- Defined in:
- lib/wallee-ruby-sdk/models/transaction_completion_mode.rb
Constant Summary collapse
- DIRECT =
'DIRECT'.freeze
- ONLINE =
'ONLINE'.freeze
- OFFLINE =
'OFFLINE'.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/transaction_completion_mode.rb', line 30 def build_from_hash(value) constantValues = TransactionCompletionMode.constants.select { |c| TransactionCompletionMode::const_get(c) == value } raise "Invalid ENUM value #{value} for class #TransactionCompletionMode" if constantValues.empty? value end |