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) 339 B
/** * Type of config (based on type of credentials) * @author Gabe Abrams */ enum ZoomAPIConfigType { // ZACCL generates its own tokens via JWT JWT = 'JWT', // User provides a token OR this is the Harvard Apigee token Token = 'Token', // User provides OAuth credentials OAuth = 'OAuth', } export default ZoomAPIConfigType;