/**
 * The kind of client a participant used to join. Values match the serverless
 * webinar product's stored `device_type` strings so analytics aggregates align.
 * iOS vs Android is distinguished separately via `device_info`.
 */
export enum DeviceTypeEnum {
  /** Native mobile app (device_info carries 'ios' / 'android'). */
  APP = 'App',
  /** Web portal / browser. */
  BROWSER = 'Browser',
  /** Joined directly through a link, no client metadata captured. */
  THROUGH_LINK = 'ThroughLink',
}
