Class: MessenteApi::Status

Inherits:
Object
  • Object
show all
Defined in:
lib/messente_api/models/status.rb

Constant Summary collapse

ACK =
"ACK".freeze
DELIVRD =
"DELIVRD".freeze
UNDELIV =
"UNDELIV".freeze
FAILED =
"FAILED".freeze
UNKNOWN =
"UNKNOWN".freeze
ACCEPTD =
"ACCEPTD".freeze
REJECTD =
"REJECTD".freeze
DELETED =
"DELETED".freeze
EXPIRED =
"EXPIRED".freeze
NACK =
"NACK".freeze
SEEN =
"SEEN".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/messente_api/models/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/messente_api/models/status.rb', line 39

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