Class: Wallee::ClientErrorType
- Inherits:
-
Object
- Object
- Wallee::ClientErrorType
- Defined in:
- lib/wallee-ruby-sdk/models/client_error_type.rb
Constant Summary collapse
- END_USER_ERROR =
'END_USER_ERROR'.freeze
- CONFIGURATION_ERROR =
'CONFIGURATION_ERROR'.freeze
- DEVELOPER_ERROR =
'DEVELOPER_ERROR'.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/wallee-ruby-sdk/models/client_error_type.rb', line 30 def build_from_hash(value) constantValues = ClientErrorType.constants.select { |c| ClientErrorType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ClientErrorType" if constantValues.empty? value end |