class Twilio::TwiML::SsmlLang
Specifying Another Language for Specific Words 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 705 def initialize(words, **keyword_args) 706 super(**keyword_args) 707 @name = 'lang' 708 @value = words 709 yield(self) if block_given? 710 end