Class: Notifo::MediaType
- Inherits:
-
Object
- Object
- Notifo::MediaType
- Defined in:
- lib/notifo/models/media_type.rb
Constant Summary collapse
- UNKNOWN =
'Unknown'.freeze
- IMAGE =
'Image'.freeze
- AUDIO =
'Audio'.freeze
- VIDEO =
'Video'.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/media_type.rb', line 24 def build_from_hash(value) constantValues = MediaType.constants.select { |c| MediaType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #MediaType" if constantValues.empty? value end |