=begin #Messente API #[Messente](https://messente.com) is a global provider of messaging and user verification services. Use Messente API library to send and receive SMS, Viber and WhatsApp messages, blacklist phone numbers to make sure you're not sending any unwanted messages, manage contacts and groups. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world. The version of the OpenAPI document: 1.0.1 Contact: messente@messente.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.0.0 =end require 'date' module MessenteApi class ErrorCodeOmnichannelMachine N0 = 0.freeze N1 = 1.freeze N2 = 2.freeze N3 = 3.freeze N4 = 4.freeze N5 = 5.freeze N6 = 6.freeze N7 = 7.freeze N8 = 8.freeze N9 = 9.freeze N10 = 10.freeze N999 = 999.freeze # 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) constantValues = ErrorCodeOmnichannelMachine.constants.select { |c| ErrorCodeOmnichannelMachine::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ErrorCodeOmnichannelMachine" if constantValues.empty? value end end end