module Slack::Web::Api::Endpoints::Chat
def chat_meMessage(options = {})
- See: https://github.com/dblock/slack-api-ref/blob/master/methods/chat/chat.meMessage.json -
See: https://api.slack.com/methods/chat.meMessage -
Options Hash:
(**options)
-
:text
(Object
) -- -
:channel
(channel
) --
def chat_meMessage(options = {}) throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil? throw ArgumentError.new('Required arguments :text missing') if options[:text].nil? post('chat.meMessage', options) end