Member Junction
    Preparing search index...

    Google Forms API response structures

    interface GoogleFormsAnswer {
        fileUploadAnswers?: {
            answers: { fileId: string; fileName: string; mimeType: string }[];
        };
        grade?: { correct: boolean; score: number };
        questionId: string;
        textAnswers?: { answers: { value: string }[] };
    }
    Index

    Properties

    fileUploadAnswers?: {
        answers: { fileId: string; fileName: string; mimeType: string }[];
    }
    grade?: { correct: boolean; score: number }
    questionId: string
    textAnswers?: { answers: { value: string }[] }