Sha256: 03df8295eb1cd043a4d20f4f60d54e578bae41a064b844dc8d0d7b7e2ab53b89
Contents?: true
Size: 1.6 KB
Versions: 2
Compression:
Stored size: 1.6 KB
Contents
=begin #Messente API #[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. 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.3.0 Contact: messente@messente.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.3.1 =end require 'date' module MessenteApi class ErrorTitleOmnichannel NOT_FOUND = "Not found".freeze FORBIDDEN = "Forbidden".freeze UNAUTHORIZED = "Unauthorized".freeze INVALID_DATA = "Invalid data".freeze INTERNAL_SERVER_ERROR = "Internal Server Error".freeze MISSING_DATA = "Missing data".freeze METHOD_NOT_ALLOWED = "Method not allowed".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 = ErrorTitleOmnichannel.constants.select { |c| ErrorTitleOmnichannel::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ErrorTitleOmnichannel" if constantValues.empty? value end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
messente_api-1.3.1 | lib/messente_api/models/error_title_omnichannel.rb |
messente_api-1.3.0 | lib/messente_api/models/error_title_omnichannel.rb |