export class CustomerDiscount { id: string; name: string; discount: number; public constructor(init?: Partial) { this.id = ''; this.name = ''; this.discount = 0; Object.assign(this, init); } }