// vim: set tw=80 ts=2 sw=2 sts=2 : import { AccountBalances } from './accountBalances'; export class Account { id: number; name: string; authorized_overdraft: number; balances: AccountBalances; constructor() { this.authorized_overdraft = 0; } }