mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
22 lines
643 B
JavaScript
22 lines
643 B
JavaScript
export const request = (countryCode, currencyCode, totalLabel, subtotal) => {
|
|
return {
|
|
countryCode: countryCode,
|
|
currencyCode: currencyCode,
|
|
supportedNetworks: ['amex', 'maestro', 'masterCard', 'visa', 'vPay'],
|
|
merchantCapabilities: ['supports3DS'],
|
|
shippingType: 'shipping',
|
|
requiredBillingContactFields: [
|
|
'postalAddress',
|
|
'email'
|
|
],
|
|
requiredShippingContactFields: [
|
|
'postalAddress',
|
|
'email'
|
|
],
|
|
total: {
|
|
label: totalLabel,
|
|
amount: subtotal,
|
|
type: 'final'
|
|
}
|
|
}
|
|
}
|