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

ScaleQuestion

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

A scale question. The user has a range of numeric values to choose from.

interface ScaleQuestion {
high?: number;
highLabel?: string;
low?: number;
lowLabel?: string;
}

§Properties

§
high?: number
[src]

Required. The highest possible value for the scale.

§
highLabel?: string
[src]

The label to display describing the highest point on the scale.

§
low?: number
[src]

Required. The lowest possible value for the scale.

§
lowLabel?: string
[src]

The label to display describing the lowest point on the scale.