class Twilio::TwiML::Autopilot
<Autopilot> TwiML
Noun
Public Class Methods
new(name, **keyword_args) { |self| ... }
click to toggle source
Calls superclass method
Twilio::TwiML::TwiML::new
# File lib/twilio-ruby/twiml/voice_response.rb 1189 def initialize(name, **keyword_args) 1190 super(**keyword_args) 1191 @name = 'Autopilot' 1192 @value = name 1193 yield(self) if block_given? 1194 end