Class: Twilio::TwiML::SsmlPhoneme

Inherits:
TwiML
  • Object
show all
Defined in:
lib/twilio-ruby/twiml/voice_response.rb

Overview

Using Phonetic Pronunciation in <Say>

Instance Attribute Summary

Attributes inherited from TwiML

#name

Instance Method Summary collapse

Methods inherited from TwiML

#add_child, #add_text, #append, #comment, to_lower_camel_case, #to_s, #xml

Constructor Details

#initialize(words, **keyword_args) {|_self| ... } ⇒ SsmlPhoneme

Returns a new instance of SsmlPhoneme.

Yields:

  • (_self)

Yield Parameters:



975
976
977
978
979
980
# File 'lib/twilio-ruby/twiml/voice_response.rb', line 975

def initialize(words, **keyword_args)
  super(**keyword_args)
  @name = 'phoneme'
  @value = words
  yield(self) if block_given?
end