Member Junction
    Preparing search index...

    Represents a system validation issue with its severity level

    interface SystemValidationIssue {
        details?: string;
        help?: string;
        id: string;
        message: string;
        severity: "error" | "info" | "warning";
        timestamp: Date;
    }
    Index

    Properties

    details?: string
    help?: string
    id: string
    message: string
    severity: "error" | "info" | "warning"
    timestamp: Date