@chelseaapps/zoom documentation
File
src/interfaces/zoom-options.interface.ts
Index
Properties
auth
auth: literal type
Type : literal type
Zoom App authentication credentials
export interface ZoomOptions {
/**
* Zoom App authentication credentials
*/
auth: {
/**
* API Key
*/
key: string;
/**
* API secret
*/
secret: string;
};
}Was this helpful?