UNPKG

zaccl

Version:

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

23 lines (22 loc) 587 B
import ZoomMeetingType from './ZoomMeetingType'; /** * Zoom user object {@link https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/pastMeetingDetails} * @author Yuen Ler Chow */ type ZoomMeetingDetails = { 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: ZoomMeetingType; user_email: string; user_name: string; }; export default ZoomMeetingDetails;