lib/twilio-ruby/rest/conferences/participants.rb in twilio-ruby-3.12.3 vs lib/twilio-ruby/rest/conferences/participants.rb in twilio-ruby-3.13.0

- old
+ new

@@ -8,14 +8,14 @@ end end class Participant < InstanceResource def mute - update :muted => 'true' + update muted: 'true' end def unmute - update :muted => 'false' + update muted: 'false' end alias :kick :delete end end