slack-ruby/slack-ruby-client

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

Summary

Maintainability
A
50 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 UsergroupsUsers
          #
          # List all users in a User Group.
          #
          # @option options [string] :usergroup
          #   The encoded ID of the User Group to list users for.
          # @option options [boolean] :include_disabled
          #   Allow results that involve disabled User Groups.
          # @option options [string] :team_id
          #   encoded team id where the user group exists, required if org token is used.
          # @see https://api.slack.com/methods/usergroups.users.list
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/usergroups.users/usergroups.users.list.json
          def usergroups_users_list(options = {})
            raise ArgumentError, 'Required arguments :usergroup missing' if options[:usergroup].nil?
            post('usergroups.users.list', options)
          end

          #
          # Update the list of users for a user group.
          #
          # @option options [string] :usergroup
          #   The encoded ID of the user group to update.
          # @option options [array] :users
          #   A comma separated string of encoded user IDs that represent the entire list of users for the user group.
          # @option options [boolean] :include_count
          #   Include the number of users in the user group.
          # @option options [string] :team_id
          #   encoded team id where the user group exists, required if org token is used.
          # @see https://api.slack.com/methods/usergroups.users.update
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/usergroups.users/usergroups.users.update.json
          def usergroups_users_update(options = {})
            raise ArgumentError, 'Required arguments :usergroup missing' if options[:usergroup].nil?
            raise ArgumentError, 'Required arguments :users missing' if options[:users].nil?
            post('usergroups.users.update', options)
          end
        end
      end
    end
  end
end