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
13 lines (12 loc) • 404 B
TypeScript
/**
* Enum {@link InitiatorType} represents the various types of initiators for transactions.
*
* @readonly
* @enum {string}
* @property {string} CARDHOLDER - The transaction was initiated by the cardholder.
* @property {string} MERCHANT - The transaction was initiated by the merchant.
*/
export declare enum InitiatorType {
CARDHOLDER = "Cardholder",
MERCHANT = "Merchant"
}