import type { forms_FormResponseQuestion } from './forms_FormResponseQuestion'; export type forms_FormResponseFields = { /** * Whether the originating form allows multiple submissions. */ allowMultipleSubmissions?: boolean; /** * Description of the form at the time the response was created. */ formDescription?: string; /** * IDs of the form's questions, in display order. */ formFieldIds?: Array; /** * Answered questions keyed by question ID. */ formFields?: Record; /** * Name of the form at the time the response was created. */ formName?: string; /** * Completion status of the response. */ status?: forms_FormResponseFields.status; /** * Timestamp the client completed the response, if completed. */ submissionDate?: string; /** * Visibility of the originating form. */ visibility?: forms_FormResponseFields.visibility; }; export declare namespace forms_FormResponseFields { /** * Completion status of the response. */ enum status { PENDING = "pending", COMPLETED = "completed", OPEN = "open" } /** * Visibility of the originating form. */ enum visibility { REQUESTED_CLIENTS = "requestedClients", ALL_CLIENTS = "allClients" } }