class Twilio::TwiML::SsmlProsody

Controling Volume, Speaking Rate, and Pitch 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
672 def initialize(words, **keyword_args)
673   super(**keyword_args)
674   @name = 'prosody'
675   @value = words
676   yield(self) if block_given?
677 end