Class: PostFinanceCheckout::InvoiceReconciliationRecordRejectionStatus
- Inherits:
-
Object
- Object
- PostFinanceCheckout::InvoiceReconciliationRecordRejectionStatus
- Defined in:
- lib/postfinancecheckout-ruby-sdk/models/invoice_reconciliation_record_rejection_status.rb
Constant Summary collapse
- NONE =
'NONE'.freeze
- REJECTED =
'REJECTED'.freeze
- BULK_REJECTED =
'BULK_REJECTED'.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/postfinancecheckout-ruby-sdk/models/invoice_reconciliation_record_rejection_status.rb', line 30 def build_from_hash(value) constantValues = InvoiceReconciliationRecordRejectionStatus.constants.select { |c| InvoiceReconciliationRecordRejectionStatus::const_get(c) == value } raise "Invalid ENUM value #{value} for class #InvoiceReconciliationRecordRejectionStatus" if constantValues.empty? value end |