export class UpdateProductPricesItem { id: string; name: string; oldPrice: number; newPrice: number | null; public constructor(init?: Partial) { this.id = ''; this.name = ''; this.oldPrice = 0; this.newPrice = null; Object.assign(this, init); } }