hyperoslo/facebook-messenger

View on GitHub
lib/facebook/messenger/bot/messaging_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Facebook
  module Messenger
    module Bot
      # Supported message types
      module MessagingType
        RESPONSE = 'RESPONSE'.freeze
        UPDATE = 'UPDATE'.freeze
        MESSAGE_TAG = 'MESSAGE_TAG'.freeze
      end
    end
  end
end