A RemoteMessage is similar to a BasicUserMessage
associated bot
contents of the message
remote client that originated the message
when the message was received
# File lib/rbot/core/remote.rb, line 94 def initialize(bot, source, message) @bot = bot @source = source @message = message @time = Time.now end
Remote messages are always ‘private’
# File lib/rbot/core/remote.rb, line 107 def private? true end
The target of a RemoteMessage
# File lib/rbot/core/remote.rb, line 102 def target @bot end