class Twilio::TwiML::SsmlSayAs
Controlling How Special Types of Words Are Spoken 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 650 def initialize(words, **keyword_args) 651 super(**keyword_args) 652 @name = 'say-as' 653 @value = words 654 yield(self) if block_given? 655 end