Interface Account

interface Account {
    iban?: string;
    name: LanguageString;
    number: string;
    typeCode: string;
}

Properties

iban?: string
number: string
typeCode: string