# File lib/active_merchant/billing/gateways/paystation.rb, line 32
      def authorize(money, credit_card, options = {})
        post = new_request
        
        add_invoice(post, options)
        add_amount(post, money, options)
        
        add_credit_card(post, credit_card)
        
        add_authorize_flag(post, options)
        
        commit(post)
      end