@ken-all/kenall
    Preparing search index...

    Interface BankBranch

    A BankBranch object would store the information about the bank branch.

    interface BankBranch {
        code: string;
        hiragana: string;
        katakana: string;
        name: string;
        romaji: string;
    }
    Index

    Properties

    code: string

    The code of bank branch.

    Example: "188"

    hiragana: string

    The reading of the name of bank branch in hiragana.

    Example: "えびす"

    katakana: string

    The reading of the name of bank branch in katakana.

    Example: "エビス"

    name: string

    The name of bank branch.

    Example: "恵比寿"

    romaji: string

    The "romanized" reading of the name of bank branch.

    Example : "ebisu"