UNPKG

zaccl

Version:

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

15 lines (13 loc) 248 B
/** * Zoom user group * @author Gabe Abrams */ type ZoomGroup = { // Unique id for the group id: string, // Name of the group name: string, // Total number of members in the group total_members: number, }; export default ZoomGroup;