class Twilio::TwiML::SsmlSub

Pronouncing Acronyms and Abbreviations 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
639 def initialize(words, **keyword_args)
640   super(**keyword_args)
641   @name = 'sub'
642   @value = words
643   yield(self) if block_given?
644 end