zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
13 lines (12 loc) • 347 B
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 = {
pollId: string;
timestamp: number;
questions: ZoomUsersAnswersToQuestion[];
};
export default ZoomPollOccurrence;