Interface UserNotificationWebSocketBroadcastEventDTO

interface UserNotificationWebSocketBroadcastEventDTO {
    content: string;
    event: USER_NOTIFICATION;
    messageTimestamp: number;
    sessionId: `${string & {
        length: 24;
    }}`;
    userId: string;
}

Properties

content: string
messageTimestamp: number
sessionId: `${string & {
    length: 24;
}}`
userId: string