Interface CodeRunStatusNotificationWebSocketBroadcastEventDTO

interface CodeRunStatusNotificationWebSocketBroadcastEventDTO {
    event: CODE_RUN_STATUS_NOTIFICATION;
    log: InfoLogCaseStatus;
    messageTimestamp: number;
    runId: string;
    sessionId: `${string & {
        length: 24;
    }}`;
    status: SubmissionRunStatus;
}

Properties

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