class Twilio::TwiML::SsmlPhoneme

Using Phonetic Pronunciation 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
683 def initialize(words, **keyword_args)
684   super(**keyword_args)
685   @name = 'phoneme'
686   @value = words
687   yield(self) if block_given?
688 end