class Twilio::TwiML::Leave

<Leave> 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
827 def initialize(**keyword_args)
828   super(**keyword_args)
829   @name = 'Leave'
830 
831   yield(self) if block_given?
832 end