export class CallStats { /** * @param {CallStats} stats */ constructor(stats) { for (const [ key, value ] of Object.entries(stats)) this[key] = value; } totalCallsThisMonth; totalCallsEverPlaced; totalCallsMade; allTimeRecord; isNewRecord = false; }