dblock/slack-ruby-client

View on GitHub
lib/slack/web/api/endpoints/team_profile.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake

module Slack
  module Web
    module Api
      module Endpoints
        module TeamProfile
          #
          # Retrieve a team's profile.
          #
          # @option options [string] :visibility
          #   Filter by visibility.
          # @see https://api.slack.com/methods/team.profile.get
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/team.profile/team.profile.get.json
          def team_profile_get(options = {})
            post('team.profile.get', options)
          end
        end
      end
    end
  end
end