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.
| 503 504 505 506 507 508 | # File 'lib/twilio-ruby/twiml/voice_response.rb', line 503 def initialize(**keyword_args) super(**keyword_args) @name = 'Pause' yield(self) if block_given? end |