# File lib/active_merchant/billing/gateways/quickpay.rb, line 93
      def initialize(options = {})
        requires!(options, :login, :password)
        @protocol = options.delete(:version) || 3 # default to protocol version 3
        @options = options
        super
      end