Class: Twilio::TwiML::Leave
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
<Leave> TwiML Verb
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(**keyword_args) {|_self| ... } ⇒ Leave
constructor
A new instance of Leave.
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.
1515 1516 1517 1518 1519 1520 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 1515 def initialize(**keyword_args) super(**keyword_args) @name = 'Leave' yield(self) if block_given? end |