Sha256: 7e4bda267093e1ab374d4d02c1817770cb93d82cddc3a8dd2ec7e493de58f375
Contents?: true
Size: 867 Bytes
Versions: 18
Compression:
Stored size: 867 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 OpportunityStatusNullable WON = "WON".freeze OPEN = "OPEN".freeze def self.all_vars @all_vars ||= [WON, OPEN].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 OpportunityStatusNullable.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #OpportunityStatusNullable" end end end
Version data entries
18 entries across 18 versions & 1 rubygems