@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
20 lines (17 loc) • 609 B
text/typescript
import type { JSONObject } from 'tiny-types';
import { ActivityDetails, CorrelationId } from '../model';
import { Timestamp } from '../screenplay';
import { ActivityStarts } from './ActivityStarts';
/**
* @group Events
*/
export class TaskStarts extends ActivityStarts {
static fromJSON(o: JSONObject): TaskStarts {
return new TaskStarts(
CorrelationId.fromJSON(o.sceneId as string),
CorrelationId.fromJSON(o.activityId as string),
ActivityDetails.fromJSON(o.details as JSONObject),
Timestamp.fromJSON(o.timestamp as string),
);
}
}