export class BillSettlementReportItem { date: string; billId: string; amount: number; settlement: string; public constructor(init?: Partial) { this.date = ''; this.billId = ''; this.amount = 0; this.settlement = ''; Object.assign(this, init); } }