class Twilio::TwiML::SsmlEmphasis
Emphasizing 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 716 def initialize(words, **keyword_args) 717 super(**keyword_args) 718 @name = 'emphasis' 719 @value = words 720 yield(self) if block_given? 721 end