Builds the enum from string
Parameters:
enum value in the form of the string
Returns:
The enum value
29 30 31 32
# File 'lib/algolia/models/search/query_type.rb', line 29 def build_from_hash(value) return value if QueryType.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #QueryType" end