UNPKG

zaccl

Version:

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

12 lines (11 loc) 230 B
/** * A user's response to a Zoom poll question * @author Yuen Ler Chow */ type ZoomUserAnswer = { userFullName: string; userEmail: string; answer: string[]; timestamp: number; }; export default ZoomUserAnswer;