Sha256: 045d803a0a986f690d9b6d62b4c8863f77aee4b4f9e71dbb1b5087f0d23b9f0d

Contents?: true

Size: 1.55 KB

Versions: 1

Compression:

Stored size: 1.55 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.2.0
Contact: messente@messente.com
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 4.0.3

=end

require 'date'

module MessenteApi
  class Status
    ACK = "ACK".freeze
    DELIVRD = "DELIVRD".freeze
    UNDELIV = "UNDELIV".freeze
    FAILED = "FAILED".freeze
    UNKNOWN = "UNKNOWN".freeze
    ACCEPTD = "ACCEPTD".freeze
    REJECTD = "REJECTD".freeze
    DELETED = "DELETED".freeze
    EXPIRED = "EXPIRED".freeze
    NACK = "NACK".freeze
    SEEN = "SEEN".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 = Status.constants.select { |c| Status::const_get(c) == value }
      raise "Invalid ENUM value #{value} for class #Status" if constantValues.empty?
      value
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
messente_api-1.2.0 lib/messente_api/models/status.rb