class Twilio::TwiML::Conference
<Conference> 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 1073 def initialize(name, **keyword_args) 1074 super(**keyword_args) 1075 @name = 'Conference' 1076 @value = name 1077 yield(self) if block_given? 1078 end