Class: Twilio::TwiML::Pause
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
<Pause> TwiML Verb
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(**keyword_args) {|_self| ... } ⇒ Pause
constructor
A new instance of Pause.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(**keyword_args) {|_self| ... } ⇒ Pause
Returns a new instance of Pause.
604 605 606 607 608 609 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 604 def initialize(**keyword_args) super(**keyword_args) @name = 'Pause' yield(self) if block_given? end |