module Slack::Web::Api::Endpoints::Files
def files_comments(options = {})
- See: https://github.com/dblock/slack-api-ref/blob/master/methods/files.comments.json -
See: https://api.slack.com/methods/files.comments -
Options Hash:
(**options)
-
:comment
(Object
) -- -
:id
(Object
) -- -
:file
(file
) --
def files_comments(options = {}) throw ArgumentError.new('Required arguments :file missing') if options[:file].nil? throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? throw ArgumentError.new('Required arguments :comment missing') if options[:comment].nil? post('files.comments', options) end