interface Alert {
    id: string;
    description: string;
    status: AlertStatus;
    type: externalEventsPerCustomerPerDay;
    workspaceId: string;
    createdAt: Date;
    updatedAt: Date;
    lastSeenAt: Date;
    resolvedAt?: Date;
    customerId?: string;
    severity: AlertSeverity;
}

Properties

id: string
description: string
status: AlertStatus
workspaceId: string
createdAt: Date
updatedAt: Date
lastSeenAt: Date
resolvedAt?: Date
customerId?: string
severity: AlertSeverity