Sha256: 8218f7a8e30a0574c8cf8129ec2584135ea2dbe65e80fbab750631a50f231311
Contents?: true
Size: 1.04 KB
Versions: 13
Compression:
Stored size: 1.04 KB
Contents
=begin #Composio OpenAPI #Composio SDK: Equip your agent with high-quality tools and build your real-world usecase The version of the OpenAPI document: 1.0.0 =end require 'date' require 'time' module Composio class State PREPROCESS = "preprocess".freeze VALIDATE = "validate".freeze PREPARE = "prepare".freeze BUILD = "build".freeze PUSH = "push".freeze LOAD = "load".freeze FINISH = "finish".freeze def self.all_vars @all_vars ||= [PREPROCESS, VALIDATE, PREPARE, BUILD, PUSH, LOAD, FINISH].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 State.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #State" end end end
Version data entries
13 entries across 13 versions & 1 rubygems