Class: ElasticEmail::LogJobStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/ElasticEmail/models/log_job_status.rb

Constant Summary collapse

ALL =
"All".freeze
READY_TO_SEND =
"ReadyToSend".freeze
WAITING_TO_RETRY =
"WaitingToRetry".freeze
SENDING =
"Sending".freeze
ERROR =
"Error".freeze
SENT =
"Sent".freeze
OPENED =
"Opened".freeze
CLICKED =
"Clicked".freeze
UNSUBSCRIBED =
"Unsubscribed".freeze
ABUSE_REPORT =
"AbuseReport".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



32
33
34
# File 'lib/ElasticEmail/models/log_job_status.rb', line 32

def self.build_from_hash(value)
  new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



39
40
41
42
43
# File 'lib/ElasticEmail/models/log_job_status.rb', line 39

def build_from_hash(value)
  constantValues = LogJobStatus.constants.select { |c| LogJobStatus::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #LogJobStatus" if constantValues.empty?
  value
end