zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
15 lines (14 loc) • 404 B
TypeScript
/**
* Types of questions and answers in a poll
* @author Yuen Ler Chow
*/
declare enum ZoomPollQuestionAndAnswerType {
SingleChoice = "SingleChoice",
MultipleChoice = "MultipleChoice",
ShortAnswer = "ShortAnswer",
LongAnswer = "LongAnswer",
FillInTheBlank = "FillInTheBlank",
RatingScale = "RatingScale",
Unknown = "Unknown"
}
export default ZoomPollQuestionAndAnswerType;