lib/slack/web/api/endpoints/team_preferences.rb
# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake
module Slack
module Web
module Api
module Endpoints
module TeamPreferences
#
# Retrieve a list of a workspace's team preferences.
#
# @see https://api.slack.com/methods/team.preferences.list
# @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/team.preferences/team.preferences.list.json
def team_preferences_list(options = {})
post('team.preferences.list', options)
end
end
end
end
end
end