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

21 lines (20 loc) 684 B
/** * @description Object containing information about the end customer's bank account. */ export interface BankAccountInformation { /** * @description IBAN of the end customer'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. */ iban: string; /** * @description Bank Identification Code. */ bic?: string; /** * @description Account holder of the bank account with the given IBAN. * Does not necessarily have to be the end customer (e.g., joint accounts). */ accountHolder: string; }