import { AdditionalBankIdentification } from "./additionalBankIdentification"; import { BankAccountIdentification } from "./bankAccountIdentification"; export declare class NumberAndBicAccountIdentification extends BankAccountIdentification { /** * The bank account number, without separators or whitespace. The length and format depends on the bank or country. */ "accountNumber": string; "additionalBankIdentification"?: AdditionalBankIdentification | null; /** * The bank\'s 8- or 11-character BIC or SWIFT code. */ "bic": string; /** * **numberAndBic** */ "type": string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }