zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
23 lines (22 loc) • 494 B
TypeScript
/**
* Details about a past meeting
* @author Gabe Abrams
*/
type ZoomPastMeetingDetails = {
id: number;
uuid: string;
duration: number;
start_time: string;
end_time: string;
host_id: string;
dept: string;
participants_count: number;
source: string;
topic: string;
total_minutes: number;
type: 0 | 1 | 2 | 3 | 4 | 7 | 8;
user_email: string;
user_name: string;
has_meeting_summary: boolean;
};
export default ZoomPastMeetingDetails;