Sha256: c1552e5d71c2664ca0b792fc267b97075e842d1faec591ae0332e08678c77535
Contents?: true
Size: 1.09 KB
Versions: 12
Compression:
Stored size: 1.09 KB
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 SimpleOAuthDataSources GOOGLE_DRIVE = "GOOGLE_DRIVE".freeze INTERCOM = "INTERCOM".freeze DROPBOX = "DROPBOX".freeze ONEDRIVE = "ONEDRIVE".freeze BOX = "BOX".freeze GMAIL = "GMAIL".freeze OUTLOOK = "OUTLOOK".freeze SLACK = "SLACK".freeze def self.all_vars @all_vars ||= [GOOGLE_DRIVE, INTERCOM, DROPBOX, ONEDRIVE, BOX, GMAIL, OUTLOOK, SLACK].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 SimpleOAuthDataSources.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #SimpleOAuthDataSources" end end end
Version data entries
12 entries across 12 versions & 1 rubygems