Sha256: caecb730ffc3d169b7d953c0eab15955de7170da1f956f67e4e3331085b1ee85
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 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 AdminAppsRequests # # List app requests for a team/workspace. # # @option options [Object] :cursor # Set cursor to next_cursor returned by the previous call to list items in the next page. # @option options [Object] :limit # The maximum number of items to return. Must be between 1 - 1000 both inclusive. # @option options [Object] :team_id # . # @see https://api.slack.com/methods/admin.apps.requests.list # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps.requests/admin.apps.requests.list.json def admin_apps_requests_list(options = {}) if block_given? Pagination::Cursor.new(self, :admin_apps_requests_list, options).each do |page| yield page end else post('admin.apps.requests.list', options) end end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems