class ElasticEmail::LogJobStatus

Constants

ABUSE_REPORT
ALL
CLICKED
ERROR
OPENED
READY_TO_SEND
SENDING
SENT
UNSUBSCRIBED
WAITING_TO_RETRY

Public Class Methods

build_from_hash(value) click to toggle source

Builds the enum from string @param [String] The enum value in the form of the string @return [String] The enum value

# File lib/ElasticEmail/models/log_job_status.rb, line 32
def self.build_from_hash(value)
  new.build_from_hash(value)
end

Public Instance Methods

build_from_hash(value) click to toggle source

Builds the enum from string @param [String] The enum value in the form of the string @return [String] The enum value

# 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