class Twilio::TwiML::SsmlBreak

Adding a Pause in <Say>

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
727 def initialize(**keyword_args)
728   super(**keyword_args)
729   @name = 'break'
730 
731   yield(self) if block_given?
732 end