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

CorrectAnswer

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

A single correct answer for a question. For multiple-valued (CHECKBOX) questions, several CorrectAnswers may be needed to represent a single correct response option.

interface CorrectAnswer {
value?: string;
}

§Properties

§
value?: string
[src]

Required. The correct answer value. See the documentation for TextAnswer.value for details on how various value types are formatted.