class Twilio::TwiML::Redirect

<Redirect> TwiML Verb

<Redirect> TwiML Verb

Public Class Methods

new(url, **keyword_args) { |self| ... } click to toggle source
Calls superclass method
   # File lib/twilio-ruby/twiml/messaging_response.rb
50 def initialize(url, **keyword_args)
51   super(**keyword_args)
52   @name = 'Redirect'
53   @value = url
54   yield(self) if block_given?
55 end