zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
18 lines (15 loc) • 461 B
text/typescript
import ZoomUsersAnswersToQuestion from "./ZoomUsersAnswersToQuestion";
/**
* One poll occurrence of a poll that happened in a past occurrence of a
* Zoom meeting
* @author Gabe Abrams
*/
type ZoomPollOccurrence = {
// The poll id
pollId: string,
// Timestamp for when the poll occurred (ms since epoch for first response)
timestamp: number,
// List of questions
questions: ZoomUsersAnswersToQuestion[],
};
export default ZoomPollOccurrence;