An BankBranchesResponse describes a response to getBankBranches API call. The response includes the bank and the branch data. The bank data is the same as the BankResolverResponse.

interface BankBranchesResponse {
    data: {
        bank: v20250101.Bank;
        branches: { [key: string]: v20250101.BankBranch[] };
    };
    version: string;
}

Properties

Properties

data: {
    bank: v20250101.Bank;
    branches: { [key: string]: v20250101.BankBranch[] };
}

The bank and branch data. The branches key is the bank branch code.

version: string

The version of the data, in the form of "YYYY-MM-DD" where Y, M, and D represent digits of the year, month, and day the source data became available.