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
TypeScript
/**
* Enum representing different types of payments.
*
* {string}
* {string} Regular - Regular payment type.
* {string} Recurring - Recurring payment type.
* {string} MOTO - Mail Order Telephone Order payment type.
* {string} Installment - Installment payment type.
* {string} Unscheduled - Unscheduled payment type.
*/
export declare enum PaymentType {
Regular = "Regular",
Recurring = "Recurring",
MOTO = "MOTO",
Installment = "Installment",
Unscheduled = "Unscheduled"
}