Member Junction
    Preparing search index...
    interface GoogleFormItem {
        description?: string;
        questionGroupItem?: {
            grid?: { columns: { options: { value: string }[]; type: string } };
            questions: any[];
        };
        questionItem?: {
            question: {
                choiceQuestion?: {
                    options?: { value: string }[];
                    shuffle?: boolean;
                    type?: string;
                };
                dateQuestion?: { includeTime?: boolean; includeYear?: boolean };
                fileUploadQuestion?: {
                    folderId: string;
                    maxFiles?: number;
                    maxFileSize?: string;
                    types?: string[];
                };
                grading?: {
                    correctAnswers?: { answers: { value: string }[] };
                    pointValue: number;
                };
                questionId: string;
                required?: boolean;
                rowQuestion?: { title: string };
                scaleQuestion?: {
                    high: number;
                    highLabel?: string;
                    low: number;
                    lowLabel?: string;
                };
                textQuestion?: { paragraph?: boolean };
                timeQuestion?: { duration?: boolean };
            };
        };
        title?: string;
    }
    Index

    Properties

    description?: string
    questionGroupItem?: {
        grid?: { columns: { options: { value: string }[]; type: string } };
        questions: any[];
    }
    questionItem?: {
        question: {
            choiceQuestion?: {
                options?: { value: string }[];
                shuffle?: boolean;
                type?: string;
            };
            dateQuestion?: { includeTime?: boolean; includeYear?: boolean };
            fileUploadQuestion?: {
                folderId: string;
                maxFiles?: number;
                maxFileSize?: string;
                types?: string[];
            };
            grading?: {
                correctAnswers?: { answers: { value: string }[] };
                pointValue: number;
            };
            questionId: string;
            required?: boolean;
            rowQuestion?: { title: string };
            scaleQuestion?: {
                high: number;
                highLabel?: string;
                low: number;
                lowLabel?: string;
            };
            textQuestion?: { paragraph?: boolean };
            timeQuestion?: { duration?: boolean };
        };
    }
    title?: string