Class: SezzleClient::Intent
- Inherits:
-
Object
- Object
- SezzleClient::Intent
- Defined in:
- lib/sezzle_client/models/intent.rb
Constant Summary collapse
- AUTH =
'AUTH'.freeze
- CAPTURE =
'CAPTURE'.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
22 23 24 25 26 |
# File 'lib/sezzle_client/models/intent.rb', line 22 def build_from_hash(value) constantValues = Intent.constants.select { |c| Intent::const_get(c) == value } raise "Invalid ENUM value #{value} for class #Intent" if constantValues.empty? value end |