UNPKG

zaccl

Version:

The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.

23 lines (21 loc) 525 B
/** * Types of questions and answers in a poll * @author Yuen Ler Chow */ enum ZoomPollQuestionAndAnswerType { // Single choice SingleChoice = 'SingleChoice', // Multiple choice MultipleChoice = 'MultipleChoice', // Short answer ShortAnswer = 'ShortAnswer', // Long answer LongAnswer = 'LongAnswer', // Fill in the blank FillInTheBlank = 'FillInTheBlank', // Rating scale RatingScale = 'RatingScale', // Unknown/Other types Unknown = 'Unknown', } export default ZoomPollQuestionAndAnswerType;