Class: Twilio::TwiML::Leave

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

Overview

<Leave> TwiML Verb

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

Returns a new instance of Leave.

Yields:

  • (_self)

Yield Parameters:



1426
1427
1428
1429
1430
1431
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1426

def initialize(**keyword_args)
  super(**keyword_args)
  @name = 'Leave'

  yield(self) if block_given?
end