Method: Geti::AuthClient#process
- Defined in:
- lib/geti/auth_client.rb
#process(opts) ⇒ Object
Creates an authorization for funds transfer. Returns a Result with both validation and (if valid) authorization responses.
31 32 33 34 35 36 |
# File 'lib/geti/auth_client.rb', line 31 def process(opts) response = soap_request("ProcessSingleCertificationCheck") do data_packet { |xml| data(xml, opts) } end Geti::Response.new(response) end |