Class: PostFinanceCheckout::ChargeType
- Inherits:
-
Object
- Object
- PostFinanceCheckout::ChargeType
- Defined in:
- lib/postfinancecheckout-ruby-sdk/models/charge_type.rb
Constant Summary collapse
- ASYNCHRONOUS =
'ASYNCHRONOUS'.freeze
- SYNCHRONOUS =
'SYNCHRONOUS'.freeze
- TOKEN =
'TOKEN'.freeze
- TERMINAL =
'TERMINAL'.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
31 32 33 34 35 |
# File 'lib/postfinancecheckout-ruby-sdk/models/charge_type.rb', line 31 def build_from_hash(value) constantValues = ChargeType.constants.select { |c| ChargeType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ChargeType" if constantValues.empty? value end |