# File lib/active_merchant/billing/gateways/plugnpay.rb, line 145
      def void(authorization, options = {})
        post = PlugnpayPostData.new
        
        post[:orderID] = authorization
        post[:txn_type] = 'auth'
        
        commit(:void, post)
      end