2018-04-25 22:50:15 +00:00
|
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
2021-02-17 21:01:44 +00:00
|
|
|
import { attr } from '@ember-data/model';
|
2018-04-25 22:50:15 +00:00
|
|
|
import { fragmentOwner } from 'ember-data-model-fragments/attributes';
|
2018-05-02 18:21:01 +00:00
|
|
|
import shortUUIDProperty from '../utils/properties/short-uuid';
|
2018-04-25 22:50:15 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class RescheduleEvent extends Fragment {
|
|
|
|
@fragmentOwner() allocation;
|
2018-04-25 22:50:15 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@attr('string') previousAllocationId;
|
|
|
|
@attr('string') previousNodeId;
|
|
|
|
@attr('date') time;
|
|
|
|
@attr('string') delay;
|
2018-05-02 18:21:01 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@shortUUIDProperty('previousAllocationId') previousAllocationShortId;
|
|
|
|
@shortUUIDProperty('previousNodeShortId') previousNodeShortId;
|
|
|
|
}
|