Builds the enum from string
Parameters:
enum value in the form of the string
Returns:
The enum value
41 42 43 44
# File 'lib/algolia/models/search/action.rb', line 41 def build_from_hash(value) return value if Action.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Action" end