Sha256: 142bfea39fe0c1b43f51381a62b822b43117c20b6385b0b74f73d08e2544f8c7
Contents?: true
Size: 1.7 KB
Versions: 4
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake module Slack module Web module Api module Endpoints module ChatScheduledmessages # # Returns a list of scheduled messages. # # @option options [channel] :channel # The channel of the scheduled messages. # @option options [string] :cursor # For pagination purposes, this is the cursor value returned from a previous call to chat.scheduledmessages.list indicating where you want to start this call from. # @option options [timestamp] :latest # A UNIX timestamp of the latest value in the time range. # @option options [integer] :limit # Maximum number of original entries to return. # @option options [timestamp] :oldest # A UNIX timestamp of the oldest value in the time range. # @option options [string] :team_id # encoded team id to list channels in, required if org token is used. # @see https://api.slack.com/methods/chat.scheduledMessages.list # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/chat.scheduledMessages/chat.scheduledMessages.list.json def chat_scheduledMessages_list(options = {}) options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel] if block_given? Pagination::Cursor.new(self, :chat_scheduledMessages_list, options).each do |page| yield page end else post('chat.scheduledMessages.list', options) end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems