Sha256: 1fcbcf708ab1da22c4e3c2f0fbdc3c5666bfc6bc611a8953ddc0f7b65a0d5b49
Contents?: true
Size: 865 Bytes
Versions: 15
Compression:
Stored size: 865 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 PRStateInput CLOSED = "closed".freeze OPEN = "open".freeze ALL = "all".freeze def self.all_vars @all_vars ||= [CLOSED, OPEN, ALL].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 PRStateInput.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #PRStateInput" end end end
Version data entries
15 entries across 15 versions & 1 rubygems