bc-opayo-sdk
Version:
BetterCommerce's Opayo NodeJS SDK enables BC client applications to integrate with Opayo merchant API system. It publishes an interface to interact with [Opayo API](https://www.elavon.co.uk/resource-center/help-with-your-solutions/opayo/integrations/types
19 lines (18 loc) • 905 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RecurringType = void 0;
/**
* Enum {@link RecurringType} represents the type of recurring payment.
*
* @readonly
* @enum {string}
* @property {string} RECURRING - A recurring payment where the exact amount and frequency is known in advance.
* @property {string} UNSCHEDULED - An unscheduled payment where the exact amount and frequency is not known in advance.
* @property {string} INSTALLMENT - An installment payment where the exact amount and frequency is known in advance, but the total amount is not known in advance.
*/
var RecurringType;
(function (RecurringType) {
RecurringType["RECURRING"] = "Recurring";
RecurringType["UNSCHEDULED"] = "Unscheduled";
RecurringType["INSTALLMENT"] = "Installment";
})(RecurringType = exports.RecurringType || (exports.RecurringType = {}));