UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

51 lines (50 loc) 2.77 kB
import { AULocalAccountIdentification } from './aULocalAccountIdentification'; import { CALocalAccountIdentification } from './cALocalAccountIdentification'; import { CZLocalAccountIdentification } from './cZLocalAccountIdentification'; import { DKLocalAccountIdentification } from './dKLocalAccountIdentification'; import { HKLocalAccountIdentification } from './hKLocalAccountIdentification'; import { HULocalAccountIdentification } from './hULocalAccountIdentification'; import { IbanAccountIdentification } from './ibanAccountIdentification'; import { NOLocalAccountIdentification } from './nOLocalAccountIdentification'; import { NZLocalAccountIdentification } from './nZLocalAccountIdentification'; import { NumberAndBicAccountIdentification } from './numberAndBicAccountIdentification'; import { PLLocalAccountIdentification } from './pLLocalAccountIdentification'; import { SELocalAccountIdentification } from './sELocalAccountIdentification'; import { SGLocalAccountIdentification } from './sGLocalAccountIdentification'; import { UKLocalAccountIdentification } from './uKLocalAccountIdentification'; import { USLocalAccountIdentification } from './uSLocalAccountIdentification'; export declare class BankAccountInfo { /** * Identification of the bank account. */ 'accountIdentification'?: AULocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | IbanAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | NumberAndBicAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification | null; /** * The type of bank account. * * @deprecated since Legal Entity Management API v2 */ 'accountType'?: string; /** * The name of the banking institution where the bank account is held. */ 'bankName'?: string; /** * The two-character [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code where the bank account is registered. For example, **NL**. */ 'countryCode'?: string; /** * Identifies if the bank account was created through [instant bank verification](https://docs.adyen.com/release-notes/platforms-and-financial-products#releaseNote=2023-05-08-hosted-onboarding). */ 'trustedSource'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }