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

28 lines (27 loc) 942 B
import type { BankAccountInformation } from './BankAccountInformation.js'; import type { MandateRecurrenceType } from './MandateRecurrenceType.js'; /** * @description Object containing the relevant information of a SEPA Direct Debit * mandate for processing (mandatory fields in pain.008). * Renamed from CreateMandateWithReturnUrl to ProcessingMandateInformation. */ export interface ProcessingMandateInformation { bankAccountIban: BankAccountInformation; recurrenceType: MandateRecurrenceType; /** * @description The unique identifier of the mandate * @example your-mandate-id */ uniqueMandateReference: string; /** * @description The date of signature of the mandate. * Format YYYYMMDD * @example 20220101 */ dateOfSignature: string; /** * @description Your unique creditor identifier. * @example DE98ZZZ09999999999 */ creditorId: string; }