Sha256: 53fa350f78388fe66db82967385b0a379db8b3be9851c4bd0fc1bee24a551bde
Contents?: true
Size: 949 Bytes
Versions: 100
Compression:
Stored size: 949 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: class PayflowExpressResponse < Response def email @params['e_mail'] end def full_name "#{@params['name']} #{@params['lastname']}" end def token @params['token'] end def payer_id @params['payer_id'] end # Really the shipping country, but it is all the information provided def payer_country address['country'] end def address { 'name' => full_name, 'company' => nil, 'address1' => @params['street'], 'address2' => @params['shiptostreet2'], 'city' => @params['city'], 'state' => @params['state'], 'country' => @params['country'], 'zip' => @params['zip'], 'phone' => nil } end end end end
Version data entries
100 entries across 100 versions & 28 rubygems