import { NotificationChannel } from '../enums'; import { NotificationDelivery } from '../notification-deliveries'; import { Notification } from '../notifications'; export declare class NotificationDispatchLog { id: string; notificationId: string; deliveryId: string | null; userId: string; channel: NotificationChannel; notificationType: string; event: string; errorCode: string | null; errorMessage: string | null; metadata: Record; occurredAt: Date; createdAt: Date; notification: Notification; delivery: NotificationDelivery | null; } //# sourceMappingURL=notification-dispatch-log.entity.d.ts.map