UNPKG

zaccl

Version:

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

22 lines (21 loc) 580 B
import ZoomMeetingOrWebinarType from './ZoomMeetingOrWebinarType'; import ZoomRecordingFile from './ZoomRecordingFile'; /** * Object containing Zoom meeting recordings * @author Gabe Abrams */ type ZoomMeetingRecordings = { account_id: string; duration: number; host_id: string; id: number; recording_count: number; start_time: string; topic: string; total_size: number; type: ZoomMeetingOrWebinarType; uuid: string; recording_files?: ZoomRecordingFile[]; download_access_token?: string; }; export default ZoomMeetingRecordings;