zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
23 lines (22 loc) • 484 B
TypeScript
/**
* A webinar poll report
* @author Gabe Abrams
*/
type ZoomWebinarPollReport = {
id: number;
questions: Array<{
email: string;
name: string;
first_name: string;
last_name: string;
question_details: Array<{
answer: string;
date_time: string;
polling_id: string;
question: string;
}>;
}>;
start_time: string;
uuid: string;
};
export default ZoomWebinarPollReport;