Sha256: dcb229ef9792813d9aa1ff0c39763db57004e9ff4a61720f1775dfad9331a588
Contents?: true
Size: 959 Bytes
Versions: 18
Compression:
Stored size: 959 Bytes
Contents
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. require "date" require "time" module Algolia module Usage class Granularity HOURLY = "hourly".freeze DAILY = "daily".freeze def self.all_vars @all_vars ||= [HOURLY, DAILY].freeze end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) return value if Granularity.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Granularity" end end end end
Version data entries
18 entries across 18 versions & 1 rubygems