Class: Twilio::TwiML::SsmlP
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
Adding a Pause Between Paragraphs in <Say>
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(words, **keyword_args) {|_self| ... } ⇒ SsmlP
constructor
A new instance of SsmlP.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(words, **keyword_args) {|_self| ... } ⇒ SsmlP
Returns a new instance of SsmlP.
694 695 696 697 698 699 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 694 def initialize(words, **keyword_args) super(**keyword_args) @name = 'p' @value = words yield(self) if block_given? end |