# File lib/active_merchant/billing/gateways/paybox_direct.rb, line 82 def capture(money, authorization, options = {}) requires!(options, :order_id) post = {} add_invoice(post, options) post[:numappel] = authorization[0,10] post[:numtrans] = authorization[10,10] commit('capture', money, post) end