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
15 lines (14 loc) • 656 B
TypeScript
/**
* 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.
*/
export declare enum RecurringType {
RECURRING = "Recurring",
UNSCHEDULED = "Unscheduled",
INSTALLMENT = "Installment"
}