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