Class: Notifo::NotificationSend
- Inherits:
-
Object
- Object
- Notifo::NotificationSend
- Defined in:
- lib/notifo/models/notification_send.rb
Constant Summary collapse
- INHERIT =
'Inherit'.freeze
- SEND =
'Send'.freeze
- NOT_SENDING =
'NotSending'.freeze
- NOT_ALLOWED =
'NotAllowed'.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
24 25 26 27 28 |
# File 'lib/notifo/models/notification_send.rb', line 24 def build_from_hash(value) constantValues = NotificationSend.constants.select { |c| NotificationSend::const_get(c) == value } raise "Invalid ENUM value #{value} for class #NotificationSend" if constantValues.empty? value end |