UNPKG

zaccl

Version:

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

13 lines (11 loc) 269 B
/** * The start time of a Zoom meeting and its meeting UUID. * @author Yuen Ler Chow */ type ZoomMeetingIdAndStartTime = { // Start time of meeting. ISO 8601 start_time: string, // The meeting UUID uuid: string, }; export default ZoomMeetingIdAndStartTime;