Class: PostFinanceCheckout::TransactionLineItemVersionState
- Inherits:
-
Object
- Object
- PostFinanceCheckout::TransactionLineItemVersionState
- Defined in:
- lib/postfinancecheckout-ruby-sdk/models/transaction_line_item_version_state.rb
Constant Summary collapse
- CREATE =
'CREATE'.freeze
- SCHEDULED =
'SCHEDULED'.freeze
- PENDING =
'PENDING'.freeze
- SUCCESSFUL =
'SUCCESSFUL'.freeze
- FAILED =
'FAILED'.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
32 33 34 35 36 |
# File 'lib/postfinancecheckout-ruby-sdk/models/transaction_line_item_version_state.rb', line 32 def build_from_hash(value) constantValues = TransactionLineItemVersionState.constants.select { |c| TransactionLineItemVersionState::const_get(c) == value } raise "Invalid ENUM value #{value} for class #TransactionLineItemVersionState" if constantValues.empty? value end |