UNPKG

zaccl

Version:

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

25 lines 1.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Types of questions and answers in a poll * @author Yuen Ler Chow */ var ZoomPollQuestionAndAnswerType; (function (ZoomPollQuestionAndAnswerType) { // Single choice ZoomPollQuestionAndAnswerType["SingleChoice"] = "SingleChoice"; // Multiple choice ZoomPollQuestionAndAnswerType["MultipleChoice"] = "MultipleChoice"; // Short answer ZoomPollQuestionAndAnswerType["ShortAnswer"] = "ShortAnswer"; // Long answer ZoomPollQuestionAndAnswerType["LongAnswer"] = "LongAnswer"; // Fill in the blank ZoomPollQuestionAndAnswerType["FillInTheBlank"] = "FillInTheBlank"; // Rating scale ZoomPollQuestionAndAnswerType["RatingScale"] = "RatingScale"; // Unknown/Other types ZoomPollQuestionAndAnswerType["Unknown"] = "Unknown"; })(ZoomPollQuestionAndAnswerType || (ZoomPollQuestionAndAnswerType = {})); exports.default = ZoomPollQuestionAndAnswerType; //# sourceMappingURL=ZoomPollQuestionAndAnswerType.js.map