class PostFinanceCheckout::TransactionEnvironmentSelectionStrategy
Constants
- FORCE_PRODUCTION_ENVIRONMENT
- FORCE_TEST_ENVIRONMENT
- USE_CONFIGURATION
Public Instance Methods
build_from_hash(value)
click to toggle source
Builds the enum from string @param [String] The enum value in the form of the string @return [String] The enum value
# File lib/postfinancecheckout-ruby-sdk/models/transaction_environment_selection_strategy.rb, line 30 def build_from_hash(value) constantValues = TransactionEnvironmentSelectionStrategy.constants.select { |c| TransactionEnvironmentSelectionStrategy::const_get(c) == value } raise "Invalid ENUM value #{value} for class #TransactionEnvironmentSelectionStrategy" if constantValues.empty? value end