# File lib/active_merchant/billing/gateways/secure_pay_tech.rb, line 34
      def purchase(money, creditcard, options = {})
        post = SecurePayTechPostData.new

        add_invoice(post, money, options)
        add_creditcard(post, creditcard)        
             
        commit(:purchase, post)
      end