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" | "warning" | "info";
        timestamp: Date;
    }
    Index

    Properties

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