Class: Telstra_Messaging::Status
- Inherits:
-
Object
- Object
- Telstra_Messaging::Status
- Defined in:
- lib/Telstra_Messaging/models/status.rb
Constant Summary collapse
- PEND =
'PEND'.freeze
- SENT =
'SENT'.freeze
- DELIVRD =
'DELIVRD'.freeze
- EXPIRED =
'EXPIRED'.freeze
- DELETED =
'DELETED'.freeze
- UNDVBL =
'UNDVBL'.freeze
- REJECTED =
'REJECTED'.freeze
- READ =
'READ'.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/Telstra_Messaging/models/status.rb', line 30 def build_from_hash(value) constantValues = Status.constants.select { |c| Status::const_get(c) == value } raise "Invalid ENUM value #{value} for class #Status" if constantValues.empty? value end |