Sha256: a9fa06ca1c444bafa6ef9246697f8096fd8ff4509d7b27ab9844c1192e580d73
Contents?: true
Size: 858 Bytes
Versions: 15
Compression:
Stored size: 858 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 CommentsOrderBy CREATED = "created".freeze UPDATED = "updated".freeze def self.all_vars @all_vars ||= [CREATED, UPDATED].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 CommentsOrderBy.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #CommentsOrderBy" end end end
Version data entries
15 entries across 15 versions & 1 rubygems