UNPKG

@adyen/api-library

Version:

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

31 lines (30 loc) 1.08 kB
export declare class CZLocalAccountIdentification { /** * The 2- to 16-digit bank account number (Číslo účtu) in the following format: - The optional prefix (předčíslí). - The required second part (základní část) which must be at least two non-zero digits. Examples: - **19-123457** (with prefix) - **123457** (without prefix) - **000019-0000123457** (with prefix, normalized) - **000000-0000123457** (without prefix, normalized) */ 'accountNumber': string; /** * The 4-digit bank code (Kód banky), without separators or whitespace. */ 'bankCode': string; /** * **czLocal** */ 'type': CZLocalAccountIdentification.TypeEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CZLocalAccountIdentification { enum TypeEnum { CzLocal = "czLocal" } }