Class: Twilio::TwiML::Conference

Inherits:
TwiML
  • Object
show all
Defined in:
lib/twilio-ruby/twiml/voice_response.rb

Overview

<Conference> TwiML Noun

Instance Attribute Summary

Attributes inherited from TwiML

#name

Instance Method Summary collapse

Methods inherited from TwiML

#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml

Constructor Details

#initialize(name, **keyword_args) {|_self| ... } ⇒ Conference

Returns a new instance of Conference.

Yields:

  • (_self)

Yield Parameters:



1752
1753
1754
1755
1756
1757
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1752

def initialize(name, **keyword_args)
  super(**keyword_args)
  @name = 'Conference'
  @value = name
  yield(self) if block_given?
end