class Twilio::TwiML::SsmlS

Adding A Pause Between Sentences in <Say>

Public Class Methods

new(words, **keyword_args) { |self| ... } click to toggle source
Calls superclass method Twilio::TwiML::TwiML::new
    # File lib/twilio-ruby/twiml/voice_response.rb
661 def initialize(words, **keyword_args)
662   super(**keyword_args)
663   @name = 's'
664   @value = words
665   yield(self) if block_given?
666 end