module Paymax1

Constants

VERSION

Public Class Methods

createCharge(opts={}) click to toggle source
# File lib/paymax1.rb, line 20
def createCharge (opts={})
  return Charge.createCharge(opts)
end
establish_connection!(opts = {}) click to toggle source
# File lib/paymax1.rb, line 16
def establish_connection!(opts = {})
  Config.initialize_connect(opts)
end
queryCharge(orderNo) click to toggle source
# File lib/paymax1.rb, line 24
def queryCharge (orderNo)
  return Charge.createCharge(orderNo)
end