module Slack::Web::Api::Endpoints::FilesComments

def files_comments_add(options = {})

Other tags:
    See: https://github.com/dblock/slack-api-ref/blob/master/methods/files.comments/files.comments.add.json -
    See: https://api.slack.com/methods/files.comments.add -

Options Hash: (**options)
  • :file (file) --
  • :comment (Object) --
def files_comments_add(options = {})
  throw ArgumentError.new('Required arguments :comment missing') if options[:comment].nil?
  throw ArgumentError.new('Required arguments :file missing') if options[:file].nil?
  post('files.comments.add', options)
end