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) • 550 B
TypeScript
import { InitiatorType, RecurringType } from "../constants/enums";
/**
* Interface {@link ICredentialOnFile} represents a stored card.
*
* @interface ICredentialOnFile
* @property {string} transactionReference - Previous transaction reference
* @property {InitiatorType} initiator - Initiator of the transaction
* @property {RecurringType} type - Type of the transaction
*/
export interface ICredentialOnFile {
readonly transactionReference: string;
readonly initiator: InitiatorType;
readonly type: RecurringType;
}