class Eligible::Payment

Public Class Methods

batch(params, api_key = nil) click to toggle source
# File lib/eligible/payment.rb, line 7
def self.batch(params, api_key = nil)
  send_request(:get, '/batch/payment/status.json', api_key, params)
end
get(params, api_key = nil) click to toggle source
# File lib/eligible/payment.rb, line 3
def self.get(params, api_key = nil)
  send_request(:get, '/payment/status.json', api_key, params)
end