# This file was auto-generated by lib/generators/tasks/generate.rb module Slack module Endpoint module Pins # # This method pins an item (file, file comment, channel message, or group message) to a particular channel. # The channel argument is required and one of file, file_comment, or timestamp must also be specified. # # @option options [Object] :channel # Channel to pin the item in. # @option options [Object] :file # File to pin. # @option options [Object] :file_comment # File comment to pin. # @option options [Object] :timestamp # Timestamp of the message to pin. # @see https://api.slack.com/methods/pins.add # @see https://github.com/aki017/slack-api-docs/blob/master/methods/pins.add.md # @see https://github.com/aki017/slack-api-docs/blob/master/methods/pins.add.json def pins_add(options={}) throw ArgumentError.new("Required arguments :channel missing") if options[:channel].nil? options[:attachments] = options[:attachments].to_json if Hash === options[:attachments] post("pins.add", options) end # # This method lists the items pinned to a channel. # # @option options [Object] :channel # Channel to get pinned items for. # @see https://api.slack.com/methods/pins.list # @see https://github.com/aki017/slack-api-docs/blob/master/methods/pins.list.md # @see https://github.com/aki017/slack-api-docs/blob/master/methods/pins.list.json def pins_list(options={}) throw ArgumentError.new("Required arguments :channel missing") if options[:channel].nil? options[:attachments] = options[:attachments].to_json if Hash === options[:attachments] post("pins.list", options) end # # This method un-pins an item (file, file comment, channel message, or group message) from a channel. # The channel argument is required and one of file, file_comment, or timestamp must also be specified. # # @option options [Object] :channel # Channel where the item is pinned to. # @option options [Object] :file # File to un-pin. # @option options [Object] :file_comment # File comment to un-pin. # @option options [Object] :timestamp # Timestamp of the message to un-pin. # @see https://api.slack.com/methods/pins.remove # @see https://github.com/aki017/slack-api-docs/blob/master/methods/pins.remove.md # @see https://github.com/aki017/slack-api-docs/blob/master/methods/pins.remove.json def pins_remove(options={}) throw ArgumentError.new("Required arguments :channel missing") if options[:channel].nil? options[:attachments] = options[:attachments].to_json if Hash === options[:attachments] post("pins.remove", options) end end end end