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.

18 lines (17 loc) 571 B
/** * Enum representing different types of payments. * * @enum {string} * @ordinal {string} Regular - Regular payment type. * @ordinal {string} Recurring - Recurring payment type. * @ordinal {string} MOTO - Mail Order Telephone Order payment type. * @ordinal {string} Installment - Installment payment type. * @ordinal {string} Unscheduled - Unscheduled payment type. */ export declare enum PaymentType { Regular = "Regular", Recurring = "Recurring", MOTO = "MOTO", Installment = "Installment", Unscheduled = "Unscheduled" }