RatingQuestion
import type { RatingQuestion } from "https://googleapis.deno.dev/v1/forms:v1.ts";
A rating question. The user has a range of icons to choose from.
interface RatingQuestion {
iconType?:
| "RATING_ICON_TYPE_UNSPECIFIED"
| "STAR"
| "HEART"
| "THUMB_UP";
ratingScaleLevel?: number;
}