export class NetTransactionsItem { type: string; name: string; debit: number; credit: number; public constructor(init?: Partial) { this.type = ''; this.name = ''; this.debit = 0; this.credit = 0; Object.assign(this, init); } }