53aae016f7
* setup * handle current billing period * handle billing period selection * clean up * clean up * turn serializer to class * change to classes * placeholding, handles timezone issues for this.startTime * put in depen * fixing timezone issues for endTime * clean up * move formating on Get to the adapter. Still need to return formating from Get on serializer * fix current billing period * move all inside queryRecord to hit serilaizer * move to serializer * clean up * calendar clean up * clean up * fix styling * small fixes * small fixes Co-authored-by: Claire Bontempo <cbontempo@hashicorp.com>
11 lines
317 B
JavaScript
11 lines
317 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
export default class Activity extends Model {
|
|
@attr('string') responseTimestamp;
|
|
@attr('array') byNamespace;
|
|
@attr('string') endTime;
|
|
@attr('array') formattedEndTime;
|
|
@attr('array') formattedStartTime;
|
|
@attr('string') startTime;
|
|
@attr('object') total;
|
|
}
|