Class: PostfinancecheckoutRubySdk::BankTransactionFlowDirection
- Inherits:
-
Object
- Object
- PostfinancecheckoutRubySdk::BankTransactionFlowDirection
- Defined in:
- lib/postfinancecheckout-ruby-sdk/models/bank_transaction_flow_direction.rb
Constant Summary collapse
- INFLOW =
"INFLOW".freeze
- OUTFLOW =
"OUTFLOW".freeze
Class Method Summary collapse
- .all_vars ⇒ Object
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.all_vars ⇒ Object
29 30 31 |
# File 'lib/postfinancecheckout-ruby-sdk/models/bank_transaction_flow_direction.rb', line 29 def self.all_vars @all_vars ||= [INFLOW, OUTFLOW].freeze end |
.build_from_hash(value) ⇒ String
Builds the enum from string
36 37 38 |
# File 'lib/postfinancecheckout-ruby-sdk/models/bank_transaction_flow_direction.rb', line 36 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
43 44 45 46 |
# File 'lib/postfinancecheckout-ruby-sdk/models/bank_transaction_flow_direction.rb', line 43 def build_from_hash(value) return value if BankTransactionFlowDirection.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #BankTransactionFlowDirection" end |