UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

16 lines (15 loc) 958 B
/** @description Object containing data related to recurring. */ export interface CardRecurrenceDetails { /** * @description * first = This transaction is the first of a series of recurring transactions * * recurring = This transaction is a subsequent transaction in a series of recurring transactions * * For the initial transaction of a recurring payment, the system will automatically generate a token * that you will need for all subsequent transactions in the series. If a token has already been created, * the response will indicate this with isNewToken set to False. * * Important: This token generation mechanism is intended for regularly scheduled recurring payments initiated by you. * It should not be used in conjunction with UnscheduledCardOnFileRequestor or unscheduledCardOnFileSequenceIndicator. */ recurringPaymentSequenceIndicator?: 'first' | 'recurring'; }