export type forms_FormResponseQuestion = { /** * Answer given by the client. Its shape depends on the question Type: a string for * text/date/email questions, a string array for multiSelect, or file names for fileUpload. */ answer?: any; /** * Presigned download URLs for fileUpload answers, valid for 15 minutes. */ attachmentUrls?: Array; description?: string; hasOtherOption?: boolean; isRequired?: boolean; multipleChoiceOptions?: Array; /** * Values copied from question template */ title?: string; type?: forms_FormResponseQuestion.type; }; export declare namespace forms_FormResponseQuestion { enum type { SHORT_ANSWER = "shortAnswer", LONG_ANSWER = "longAnswer", SINGLE_SELECT = "singleSelect", MULTI_SELECT = "multiSelect", TITLE = "title", FILE_UPLOAD = "fileUpload", PHONE_NUMBER = "phoneNumber", EMAIL = "email", DATE = "date", DROPDOWN = "dropdown" } }