// FIXME: Update this file to be type safe and remove this and next line // @ts-strict-ignore import { Jsonify } from "type-fest"; import { EventType } from "../../enums"; export class EventData { type: EventType; cipherId: string; date: string; organizationId: string; static fromJSON(obj: Jsonify): EventData { return Object.assign(new EventData(), obj); } }