class Restcomm::REST::Participant

Public Instance Methods

mute() click to toggle source
   # File lib/restcomm-ruby/rest/conferences/participants.rb
12 def mute
13   update muted: 'true'
14 end
unmute() click to toggle source
   # File lib/restcomm-ruby/rest/conferences/participants.rb
16 def unmute
17   update muted: 'false'
18 end