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
|
2022-05-03 01:37:09 +00:00
|
|
|
@attr('array') byNamespace;
|
2022-01-25 22:06:56 +00:00
|
|
|
}
|