zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
27 lines (25 loc) • 802 B
text/typescript
/**
* Zoom panelist object {@link https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/webinarPanelists}
* @author Gabe Abrams
*/
type ZoomPanelist = {
// Panelist's ID
id: string,
// Panelist's email. See Email address display rules for return value details
email: string,
// The panelist's full name.
name: string,
// Join URL
join_url: string,
// The virtual background's ID
virtual_background_id?: string,
// The name tag ID to bind.
name_tag_id?: string,
// The panelist's name to display in the name tag.
name_tag_name?: string,
// The pronouns to display in the name tag.
name_tag_pronouns?: string,
// The description for the name tag(for example, the person's title).
name_tag_description?: string,
};
export default ZoomPanelist;