class Twilio::TwiML::Room

<Room> TwiML Noun

Public Class Methods

new(name, **keyword_args) { |self| ... } click to toggle source
Calls superclass method Twilio::TwiML::TwiML::new
     # File lib/twilio-ruby/twiml/voice_response.rb
1200 def initialize(name, **keyword_args)
1201   super(**keyword_args)
1202   @name = 'Room'
1203   @value = name
1204   yield(self) if block_given?
1205 end