import { Jsonify } from "type-fest"; import { Password } from "../domain/password"; import { View } from "./view"; export class PasswordHistoryView implements View { password: string = null; lastUsedDate: Date = null; constructor(ph?: Password) { if (!ph) { return; } this.lastUsedDate = ph.lastUsedDate; } static fromJSON(obj: Partial>): PasswordHistoryView { const lastUsedDate = obj.lastUsedDate == null ? null : new Date(obj.lastUsedDate); return Object.assign(new PasswordHistoryView(), obj, { lastUsedDate: lastUsedDate, }); } }