Interface ExtractIBANResult

Interface for ExtractIBAN result

interface ExtractIBANResult {
    accountNumber?: string;
    bankIdentifier?: string;
    bban?: string;
    branchIdentifier?: string;
    countryCode?: string;
    iban: string;
    valid: boolean;
}

Properties

accountNumber?: string
bankIdentifier?: string
bban?: string
branchIdentifier?: string
countryCode?: string
iban: string
valid: boolean