/**
 * 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;
