braintree
Version:
A library for server-side integrating with Braintree.
21 lines (18 loc) • 663 B
JavaScript
;
let PaymentInstrumentTypes = {
// NEXT_MAJOR_VERSION rename Android Pay to Google Pay
AndroidPayCard: "android_pay_card",
ApplePayCard: "apple_pay_card",
CreditCard: "credit_card",
EuropeBankAccount: "europe_bank_account",
LocalPayment: "local_payment",
MetaCheckoutCard: "meta_checkout_card",
MetaCheckoutToken: "meta_checkout_token",
PayPalAccount: "paypal_account",
PayPalHere: "paypal_here",
SepaDirectDebitAccount: "sepa_debit_account",
UsBankAccount: "us_bank_account",
VenmoAccount: "venmo_account",
VisaCheckoutCard: "visa_checkout_card",
};
module.exports = { PaymentInstrumentTypes: PaymentInstrumentTypes };