Interface SubmissionRunStatusNotificationWebSocketBroadcastEventDTO

interface SubmissionRunStatusNotificationWebSocketBroadcastEventDTO {
    event: SUBMISSION_RUN_STATUS_NOTIFICATION;
    messageTimestamp: number;
    points: number;
    sessionId: `${string & {
        length: 24;
    }}`;
    status: SubmissionRunStatus;
    submitId: string;
    testInfo?: TestInfoType;
    verdict: ProblemVerdict;
}

Properties

messageTimestamp: number
points: number
sessionId: `${string & {
    length: 24;
}}`
submitId: string
testInfo?: TestInfoType