Method: Twilio::TwiML::Conference#initialize
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
#initialize(name, **keyword_args) {|_self| ... } ⇒ Conference
Returns a new instance of Conference.
745 746 747 748 749 750 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 745 def initialize(name, **keyword_args) super(**keyword_args) @name = 'Conference' @value = name yield(self) if block_given? end |