class Twilio::TwiML::ReferSip
<Sip> TwiML
Noun used in <Refer>
Public Class Methods
new(sip_url, **keyword_args) { |self| ... }
click to toggle source
Calls superclass method
Twilio::TwiML::TwiML::new
# File lib/twilio-ruby/twiml/voice_response.rb 318 def initialize(sip_url, **keyword_args) 319 super(**keyword_args) 320 @name = 'Sip' 321 @value = sip_url 322 yield(self) if block_given? 323 end