prorm API Reference
    Preparing search index...

    Interface VerificationHistoryEntry

    interface VerificationHistoryEntry {
        verificationId: string;
        backupId: string;
        status: "failed" | "warning" | "passed";
        timestamp: Date;
        durationMs: number;
        checksumValid?: boolean;
        integrityValid?: boolean;
        restoreSuccess?: boolean;
    }
    Index
    verificationId: string
    backupId: string
    status: "failed" | "warning" | "passed"
    timestamp: Date
    durationMs: number
    checksumValid?: boolean
    integrityValid?: boolean
    restoreSuccess?: boolean