Method: Algolia::QuerySuggestions::LogLevel#build_from_hash

Defined in:
lib/algolia/models/query-suggestions/log_level.rb

#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



29
30
31
32
# File 'lib/algolia/models/query-suggestions/log_level.rb', line 29

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