/** * This file was auto-generated by Fern from our API Definition. */ /** * Form item - matches API Item object. Uses Dict for flexibility to match API structure. */ export interface GoogleFormsItem { /** The item ID */ itemId?: string; /** The title of the item */ title?: string; /** The description of the item */ description?: string; /** Poses a question to the user */ questionItem?: Record; /** Poses one or more questions with a single major prompt */ questionGroupItem?: Record; /** Starts a new page with a title */ pageBreakItem?: Record; /** Displays a title and description on the page */ textItem?: Record; /** Displays an image on the page */ imageItem?: Record; /** Displays a video on the page */ videoItem?: Record; }