zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
21 lines (20 loc) • 544 B
TypeScript
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[];
};
export default ZoomMeetingRecordings;