import {AccountType} from './account-type'; import {CostCentre} from './cost-centre'; export class Account { id: string; code: number; name: string; type: AccountType; isActive: boolean; isReconcilable: boolean; isStarred: boolean; isFixture: boolean; costCentre: CostCentre; public constructor(init?: Partial) { Object.assign(this, init); } }