Class: Twilio::TwiML::Room
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
<Room> TwiML Noun
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(name, **keyword_args) {|_self| ... } ⇒ Room
constructor
A new instance of Room.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(name, **keyword_args) {|_self| ... } ⇒ Room
Returns a new instance of Room.
2149 2150 2151 2152 2153 2154 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 2149 def initialize(name, **keyword_args) super(**keyword_args) @name = 'Room' @value = name yield(self) if block_given? end |