Class: Twilio::TwiML::SsmlSub
- Defined in:
- lib/twilio-ruby/twiml/voice_response.rb
Overview
Pronouncing Acronyms and Abbreviations in <Say>
Instance Attribute Summary
Attributes inherited from TwiML
Instance Method Summary collapse
-
#initialize(words, **keyword_args) {|_self| ... } ⇒ SsmlSub
constructor
A new instance of SsmlSub.
Methods inherited from TwiML
#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml
Constructor Details
#initialize(words, **keyword_args) {|_self| ... } ⇒ SsmlSub
Returns a new instance of SsmlSub.
822 823 824 825 826 827 |
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 822 def initialize(words, **keyword_args) super(**keyword_args) @name = 'sub' @value = words yield(self) if block_given? end |