Recapp Code Reference
    Preparing search index...
    QuizRunActorMessages: Unionized<
        {
            Clear: {};
            GetForUser: {
                questions: (string & BRAND<"UID">)[];
                studentId: string & BRAND<"UID">;
            };
            SubscribeToCollection: {};
            UnsubscribeFromCollection: {};
            Update: Partial<
                {
                    answers: (string | (boolean | null | undefined)[])[];
                    archived?: Timestamp;
                    correct: boolean[];
                    counter: number;
                    created: Timestamp;
                    questions: (string & BRAND<"UID">)[];
                    quizId: string & BRAND<"UID">;
                    studentId: string & BRAND<"UID">;
                    uid: string & BRAND<"UID">;
                    updated: Timestamp;
                    wrong: boolean[];
                },
            > & { uid: string & BRAND<"UID"> };
        },
        SingleValueVariants<
            {
                Clear: {};
                GetForUser: {
                    questions: (string & BRAND<"UID">)[];
                    studentId: string & BRAND<"UID">;
                };
                SubscribeToCollection: {};
                UnsubscribeFromCollection: {};
                Update: Partial<
                    {
                        answers: (string | (boolean | null | undefined)[])[];
                        archived?: Timestamp;
                        correct: boolean[];
                        counter: number;
                        created: Timestamp;
                        questions: (string & BRAND<"UID">)[];
                        quizId: string & BRAND<"UID">;
                        studentId: string & BRAND<"UID">;
                        uid: string & BRAND<"UID">;
                        updated: Timestamp;
                        wrong: boolean[];
                    },
                > & { uid: string & BRAND<"UID"> };
            },
            "QuizRunActorMessage",
            "value",
        >,
        "QuizRunActorMessage",
    > = ...