A Bank object would store the information about the bank.

interface Bank {
    code: string;
    hiragana: string;
    katakana: string;
    name: string;
    romaji: string;
}

Properties

code: string

The code of bank.

Example: "0001"

hiragana: string

The reading of the name of bank in hiragana.

Example: "みずほ"

katakana: string

The reading of the name of bank in katakana.

Example: "ミズホ"

name: string

The name of bank.

Example: "みずほ"

romaji: string

The "romanized" reading of the name of bank.

Example : "mizuho"