Class: OpenapiClient::TransactionType
- Inherits:
-
Object
- Object
- OpenapiClient::TransactionType
- Defined in:
- lib/openapi_client/models/transaction_type.rb
Constant Summary collapse
- SALE =
"SALE".freeze
- PREAUTH =
"PREAUTH".freeze
- CREDIT =
"CREDIT".freeze
- FORCED_TICKET =
"FORCED_TICKET".freeze
- VOID =
"VOID".freeze
- RETURN =
"RETURN".freeze
- POSTAUTH =
"POSTAUTH".freeze
- PAYER_AUTH =
"PAYER_AUTH".freeze
- DISBURSEMENT =
"DISBURSEMENT".freeze
Class Method Summary collapse
-
.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
.build_from_hash(value) ⇒ String
Builds the enum from string
30 31 32 |
# File 'lib/openapi_client/models/transaction_type.rb', line 30 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
37 38 39 40 41 |
# File 'lib/openapi_client/models/transaction_type.rb', line 37 def build_from_hash(value) constantValues = TransactionType.constants.select { |c| TransactionType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #TransactionType" if constantValues.empty? value end |