payflow
Version:
SDK for Payflow payment gateway.
22 lines (21 loc) • 729 B
JavaScript
module.exports = {
creditCardNumber: 'ACCT',
amount: 'AMT',
cvv: 'CVV2',
expDate: 'EXPDATE',
customerFirstName: 'BILLTOFIRSTNAME',
customerLastName: 'BILLTOLASTNAME',
customerEmail: 'EMAIL',
billingAddress: 'BILLTOSTREET',
billingCity: 'BILLTOCITY',
billingState: 'BILLTOSTATE',
billingZip: 'BILLTOZIP',
/*billingCountry: 'BILLTOCOUNTRY', //todo it has to be the iso country code*/
shippingFirstName: 'SHIPTOFIRSTNAME',
shippingLastName: 'SHIPTOLASTNAME',
shippingAddress: 'SHIPTOSTREET',
shippingCity: 'SHIPTOCITY',
shippingState: 'SHIPTOSTATE',
shippingZip: 'SHIPTOZIP'
/*shippingCountry: 'SHIPTOCOUNTRY' //todo it has to be the iso country code*/
};