/**
 * Lifecycle status of a Zoom webinar within the platform.
 * Mirrors the serverless `webinarStatus` constants.
 *
 * Stored in `hdb_online_session.status`; lives in the common layer so the
 * interface and the Zoom module can both reference it.
 */
export enum ZoomWebinarStatus {
  DRAFT = 'draft',
  INTERNAL_TESTING = 'internalTesting',
  PUBLISHED = 'published',
  COMPLETED = 'completed',
}
