/**
 * How a participant joined an online session, captured at join time. Mirrors the
 * serverless webinar product's `modeOfJoining` values so analytics stay aligned.
 */
export enum ModeOfJoiningEnum {
  /** Joined alone on this device. */
  SELF = 'SELF',
  /** Joined together with other people on the same device. */
  JOINING_WITH_OTHERS = 'JOINING_WITH_OTHERS',
  /** Already joined on another device. */
  JOINING_ON_OTHER_DEVICE = 'JOINING_ON_OTHER_DEVICE',
}
