Sha256: 6f3b9f85f753f46dea7068292a6152381bfa4bdeed9d1067638e31f7aecf104e
Contents?: true
Size: 889 Bytes
Versions: 15
Compression:
Stored size: 889 Bytes
Contents
=begin #Carbon #Connect external data to LLMs, no matter the source. The version of the OpenAPI document: 1.0.0 =end require 'date' require 'time' module Carbon class PROrderBy CREATED = "created".freeze UPDATED = "updated".freeze POPULARITY = "popularity".freeze def self.all_vars @all_vars ||= [CREATED, UPDATED, POPULARITY].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 PROrderBy.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #PROrderBy" end end end
Version data entries
15 entries across 15 versions & 1 rubygems