Sha256: 003e73677e6c9512ee88c48dcc2fe2fc260eb8356ebe19666535fb8df894b251
Contents?: true
Size: 1.84 KB
Versions: 2
Compression:
Stored size: 1.84 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 CallsParticipants # # Registers new participants added to a Call. # # @option options [string] :id # id returned by the calls.add method. # @option options [array] :users # The list of users to add as participants in the Call. Read more on how to specify users here. # @see https://api.slack.com/methods/calls.participants.add # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/calls.participants/calls.participants.add.json def calls_participants_add(options = {}) throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? post('calls.participants.add', options) end # # Registers participants removed from a Call. # # @option options [string] :id # id returned by the calls.add method. # @option options [array] :users # The list of users to remove as participants in the Call. Read more on how to specify users here. # @see https://api.slack.com/methods/calls.participants.remove # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/calls.participants/calls.participants.remove.json def calls_participants_remove(options = {}) throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? post('calls.participants.remove', options) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-1.1.0 | lib/slack/web/api/endpoints/calls_participants.rb |
slack-ruby-client-1.0.0 | lib/slack/web/api/endpoints/calls_participants.rb |