class Twilio::TwiML::Pause

<Pause> TwiML Verb

Public Class Methods

new(**keyword_args) { |self| ... } click to toggle source
Calls superclass method Twilio::TwiML::TwiML::new
    # File lib/twilio-ruby/twiml/voice_response.rb
503 def initialize(**keyword_args)
504   super(**keyword_args)
505   @name = 'Pause'
506 
507   yield(self) if block_given?
508 end