Class: AftershipAPI::Model::MetaType

Inherits:
Object
  • Object
show all
Defined in:
lib/aftership-tracking-sdk/models/meta_type.rb

Constant Summary collapse

BAD_REQUEST =
"BadRequest".freeze
UNAUTHORIZED =
"Unauthorized".freeze
FORBIDDEN =
"Forbidden".freeze
NOT_FOUND =
"NotFound".freeze
TOO_MANY_REQUESTS =
"TooManyRequests".freeze
INTERNAL_ERROR =
"InternalError".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.all_varsObject



11
12
13
# File 'lib/aftership-tracking-sdk/models/meta_type.rb', line 11

def self.all_vars
  @all_vars ||= [BAD_REQUEST, UNAUTHORIZED, FORBIDDEN, NOT_FOUND, TOO_MANY_REQUESTS, INTERNAL_ERROR,].freeze
end

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • value (String)

    The enum value in the form of the string

Returns:

  • (String)

    The enum value



18
19
20
# File 'lib/aftership-tracking-sdk/models/meta_type.rb', line 18

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:

  • value (String)

    The enum value in the form of the string

Returns:

  • (String)

    The enum value



25
26
27
28
# File 'lib/aftership-tracking-sdk/models/meta_type.rb', line 25

def build_from_hash(value)
  return value if MetaType.all_vars.include?(value)
  raise "Invalid ENUM value #{value} for class #MetaType"
end