class Twilio::TwiML::SsmlP
Adding a Pause
Between Paragraphs 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 694 def initialize(words, **keyword_args) 695 super(**keyword_args) 696 @name = 'p' 697 @value = words 698 yield(self) if block_given? 699 end