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

TextAnswer

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

An answer to a question represented as text.

interface TextAnswer {
readonly value?: string;
}

§Properties

§
readonly value?: string
[src]

Output only. The answer value. Formatting used for different kinds of question: * ChoiceQuestion * RADIO or DROP_DOWN: A single string corresponding to the option that was selected. * CHECKBOX: Multiple strings corresponding to each option that was selected. * TextQuestion: The text that the user entered. * ScaleQuestion: A string containing the number that was selected. * DateQuestion * Without time or year: MM-DD e.g. "05-19" * With year: YYYY-MM-DD e.g. "1986-05-19" * With time: MM-DD HH:MM e.g. "05-19 14:51" * With year and time: YYYY-MM-DD HH:MM e.g. "1986-05-19 14:51" * TimeQuestion: String with time or duration in HH:MM format e.g. "14:51" * RowQuestion within QuestionGroupItem: The answer for each row of a QuestionGroupItem is represented as a separate Answer. Each will contain one string for RADIO-type choices or multiple strings for CHECKBOX choices.