# File lib/active_merchant/billing/gateways/quickpay.rb, line 159
      def store(creditcard, options = {})
        post = {}

        add_creditcard(post, creditcard, options)
        add_invoice(post, options)
        add_description(post, options)
        add_fraud_parameters(post, options)
        add_testmode(post)

        commit(:subscribe, post)
      end