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

25 lines (24 loc) 686 B
/** * @description Payee bank account details as part of the payment instructions. */ export interface Payee { /** * @description IBAN of the payee's or beneficiary's bank account. * The IBAN is the International Bank Account Number. It is an internationally agreed format for * the BBAN and includes the ISO country code and two check digits. * @maxLength 50 * @example DE02370502990000684712 */ iban: string; /** * @description Bank Identification Code. * @maxLength 11 * @example COKSDE33XXX */ bic?: string; /** * @description Name of the payee. * @example Max Mustermann */ name: string; }