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