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.
23 lines (22 loc) • 837 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentType = void 0;
/**
* 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.
*/
var PaymentType;
(function (PaymentType) {
PaymentType["Regular"] = "Regular";
PaymentType["Recurring"] = "Recurring";
PaymentType["MOTO"] = "MOTO";
PaymentType["Installment"] = "Installment";
PaymentType["Unscheduled"] = "Unscheduled";
})(PaymentType = exports.PaymentType || (exports.PaymentType = {}));
;