Method: ActiveMerchant::Billing::IatsPaymentsGateway#unstore

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

#unstore(authorization, options = {}) ⇒ Object



72
73
74
75
76
77
78
# File 'lib/active_merchant/billing/gateways/iats_payments.rb', line 72

def unstore(authorization, options = {})
  post = {}
  post[:customer_code] = authorization
  add_ip(post, options)

  commit(:unstore, post)
end