Sha256: a63efd48668ab13c3e9837f73c2a4714b7df9a8cc3dc464d3c636f4a7abe85e9

Contents?: true

Size: 349 Bytes

Versions: 2

Compression:

Stored size: 349 Bytes

Contents

module Twilio
  module REST
    class Participants < ListResource
      private
      def instance_sid_key
        'call_sid'
      end
    end

    class Participant < InstanceResource
      def mute
        update :muted => 'true'
      end

      def unmute
        update :muted => 'false'
      end

      alias :kick :delete
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
twilio-ruby-3.3.1 lib/twilio-ruby/rest/conferences/participants.rb
twilio-ruby-3.3.0 lib/twilio-ruby/rest/conferences/participants.rb