dblock/slack-ruby-client

View on GitHub
lib/slack/web/api/endpoints/admin_users_unsupportedVersions.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 AdminUsersUnsupportedversions
          #
          # Ask Slackbot to send you an export listing all workspace members using unsupported software, presented as a zipped CSV file.
          #
          # @option options [integer] :date_end_of_support
          #   Unix timestamp of the date of past or upcoming end of support cycles. If not provided will include all announced end of support cycles.
          # @option options [integer] :date_sessions_started
          #   Unix timestamp of a date to start looking for user sessions. If not provided will start six months ago.
          # @see https://api.slack.com/methods/admin.users.unsupportedVersions.export
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.users.unsupportedVersions/admin.users.unsupportedVersions.export.json
          def admin_users_unsupportedVersions_export(options = {})
            post('admin.users.unsupportedVersions.export', options)
          end
        end
      end
    end
  end
end