Class Index [+]

Quicksearch

ActiveMerchant::Billing::PayflowExpressResponse

Public Instance Methods

address() click to toggle source
    # File lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb, line 25
25:       def address
26:         {  'name'       => full_name,
27:            'company'    => nil,
28:            'address1'   => @params['street'],
29:            'address2'   => @params['shiptostreet2'],
30:            'city'       => @params['city'],
31:            'state'      => @params['state'],
32:            'country'    => @params['country'],
33:            'zip'        => @params['zip'],
34:            'phone'      => nil
35:         }
36:       end
email() click to toggle source
   # File lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb, line 4
4:       def email
5:         @params['e_mail']
6:       end
full_name() click to toggle source
    # File lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb, line 8
 8:       def full_name
 9:         "#{@params['name']} #{@params['lastname']}"
10:       end
payer_country() click to toggle source

Really the shipping country, but it is all the information provided

    # File lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb, line 21
21:       def payer_country
22:         address['country']
23:       end
payer_id() click to toggle source
    # File lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb, line 16
16:       def payer_id
17:         @params['payer_id']
18:       end
token() click to toggle source
    # File lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb, line 12
12:       def token
13:         @params['token']
14:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.