class Twilio::TwiML::Record

<Record> TwiML Verb

Public Class Methods

new(**keyword_args) { |self| ... } click to toggle source
Calls superclass method Twilio::TwiML::TwiML::new
    # File lib/twilio-ruby/twiml/voice_response.rb
805 def initialize(**keyword_args)
806   super(**keyword_args)
807   @name = 'Record'
808 
809   yield(self) if block_given?
810 end