2022-01-25 22:06:56 +00:00
|
|
|
import Model, { attr } from '@ember-data/model';
|
2022-02-01 20:45:01 +00:00
|
|
|
export default class MonthlyModel extends Model {
|
2022-01-27 18:59:08 +00:00
|
|
|
@attr('string') responseTimestamp;
|
2022-04-15 19:06:10 +00:00
|
|
|
@attr('object') total; // total clients during the current/partial month
|
|
|
|
@attr('object') new; // total NEW clients during the current/partial
|
|
|
|
@attr('array') byNamespaceTotalClients;
|
|
|
|
@attr('array') byNamespaceNewClients;
|
2022-01-25 22:06:56 +00:00
|
|
|
}
|