freepbx-stats/callStats.js
2025-09-20 20:49:41 +02:00

15 lines
267 B
JavaScript

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;
}