Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QuestionGroupItem

import type { QuestionGroupItem } from "https://googleapis.deno.dev/v1/forms:v1.ts";

Defines a question that comprises multiple questions grouped together.

interface QuestionGroupItem {
grid?: Grid;
image?: Image;
questions?: Question[];
}

§Properties

§
grid?: Grid
[src]

The question group is a grid with rows of multiple choice questions that share the same options. When grid is set, all questions in the group must be of kind row.

§
image?: Image
[src]

The image displayed within the question group above the specific questions.

§
questions?: Question[]
[src]

Required. A list of questions that belong in this question group. A question must only belong to one group. The kind of the group may affect what types of questions are allowed.