Class: Twilio::TwiML::ReferSip

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

Overview

<Sip> TwiML Noun used in <Refer>

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(sip_url, **keyword_args) {|_self| ... } ⇒ ReferSip

Returns a new instance of ReferSip.

Yields:

  • (_self)

Yield Parameters:



326
327
328
329
330
331
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 326

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