class Twilio::TwiML::Reject

<Reject> 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
783 def initialize(**keyword_args)
784   super(**keyword_args)
785   @name = 'Reject'
786 
787   yield(self) if block_given?
788 end