Class: ElasticEmail::EventType
- Inherits:
-
Object
- Object
- ElasticEmail::EventType
- Defined in:
- lib/ElasticEmail/models/event_type.rb
Constant Summary collapse
- SUBMISSION =
"Submission".freeze
- FAILED_ATTEMPT =
"FailedAttempt".freeze
- ERROR =
"Error".freeze
- SENT =
"Sent".freeze
- OPEN =
"Open".freeze
- CLICK =
"Click".freeze
- UNSUBSCRIBE =
"Unsubscribe".freeze
- COMPLAINT =
"Complaint".freeze
- BOUNCE =
"Bounce".freeze
- TRANSACTIONAL_UNSUBSCRIBE =
"TransactionalUnsubscribe".freeze
- SUPPRESS =
"Suppress".freeze
Class Method Summary collapse
- .all_vars ⇒ Object
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.all_vars ⇒ Object
30 31 32 |
# File 'lib/ElasticEmail/models/event_type.rb', line 30 def self.all_vars @all_vars ||= [SUBMISSION, FAILED_ATTEMPT, ERROR, SENT, OPEN, CLICK, UNSUBSCRIBE, COMPLAINT, BOUNCE, TRANSACTIONAL_UNSUBSCRIBE, SUPPRESS].freeze end |
.build_from_hash(value) ⇒ String
Builds the enum from string
37 38 39 |
# File 'lib/ElasticEmail/models/event_type.rb', line 37 def self.build_from_hash(value) new.build_from_hash(value) end |