UNPKG

bc-checkout-sdk

Version:

BetterCommerce's Checkout NodeJS SDK enables BC client applications to integrate with Checkout merchant API system. It publishes an interface to interact with [Checkout API](https://api-reference.checkout.com/#operation/getPaymentDetails/) endpoints.

64 lines (63 loc) 2.84 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentSourceType = void 0; /** * @module * @description * Payment Source Type enum. * * This enum represents the different types of payment sources that can be used in a payment request. * * @ordinal {string} TOKEN - Token payment source type. * @ordinal {string} ID - ID payment source type. * @ordinal {string} CARD - Card payment source type. * @ordinal {string} CUSTOMER - Customer payment source type. * @ordinal {string} NETWORK_TOKEN - Network token payment source type. * @ordinal {string} PROVIDER_TOKEN - Provider token payment source type. * @ordinal {string} BANK_ACCOUNT - Bank account payment source type. * @ordinal {string} WE_CHAT_PAY - WeChat pay payment source type. * @ordinal {string} EPS - EPS payment source type. */ var PaymentSourceType; (function (PaymentSourceType) { PaymentSourceType["TOKEN"] = "token"; PaymentSourceType["ID"] = "id"; PaymentSourceType["CARD"] = "card"; PaymentSourceType["CUSTOMER"] = "customer"; PaymentSourceType["NETWORK_TOKEN"] = "network_token"; PaymentSourceType["PROVIDER_TOKEN"] = "provider_token"; PaymentSourceType["BANK_ACCOUNT"] = "bank_account"; PaymentSourceType["WE_CHAT_PAY"] = "wechatpay"; PaymentSourceType["EPS"] = "eps"; PaymentSourceType["GIRO_PAY"] = "giropay"; PaymentSourceType["PAYPAL"] = "paypal"; PaymentSourceType["ALIPAY_HK"] = "alipay_hk"; PaymentSourceType["ALIPAY_CN"] = "alipay_cn"; PaymentSourceType["ALIPAY_PLUS"] = "alipay_plus"; PaymentSourceType["GCASH"] = "gcash"; PaymentSourceType["BENEFIT"] = "benefit"; PaymentSourceType["FAWRY"] = "fawry"; PaymentSourceType["IDEAL"] = "ideal"; PaymentSourceType["SOFORT"] = "sofort"; PaymentSourceType["DANA"] = "dana"; PaymentSourceType["KAKAO_PAY"] = "kakaopay"; PaymentSourceType["TRUE_MONEY"] = "truemoney"; PaymentSourceType["TNG"] = "tng"; PaymentSourceType["QPAY"] = "qpay"; PaymentSourceType["AFTER_PAY"] = "afterpay"; PaymentSourceType["MBWAY"] = "mbway"; PaymentSourceType["STC_PAY"] = "stcpay"; PaymentSourceType["KLARNA"] = "klarna"; PaymentSourceType["P24"] = "p24"; PaymentSourceType["KNET"] = "knet"; PaymentSourceType["MULTI_BANCO"] = "multibanco"; PaymentSourceType["POST_FINANCE"] = "postfinance"; PaymentSourceType["BANCONTACT"] = "bancontact"; PaymentSourceType["ALMA"] = "alma"; PaymentSourceType["ILLICADO"] = "illicado"; PaymentSourceType["CVCONNECT"] = "cvconnect"; PaymentSourceType["TAMARA"] = "tamara"; PaymentSourceType["TRUSTLY"] = "trustly"; PaymentSourceType["SEPA"] = "sepa"; })(PaymentSourceType = exports.PaymentSourceType || (exports.PaymentSourceType = {})); ;