Method: ActiveMerchant::Billing::SallieMaeGateway#capture

Defined in:
lib/active_merchant/billing/gateways/sallie_mae.rb

#capture(money, authorization, options = {}) ⇒ Object



48
49
50
51
52
# File 'lib/active_merchant/billing/gateways/sallie_mae.rb', line 48

def capture(money, authorization, options = {})
  post = PostData.new
  post[:postonly] = authorization
  commit(:capture, money, post)
end