MeetingHistoryEventName

@objc
public enum MeetingHistoryEventName : Int, CaseIterable, CustomStringConvertible

MeetingHistoryEventName is a meeting history state which are important events to note in the history. Thus, this also includes events in EventName

  • The microphone was selected.

    Declaration

    Swift

    case audioInputSelected
  • The camera was selected.

    Declaration

    Swift

    case videoInputSelected
  • The camera selection failed.

    Declaration

    Swift

    case videoInputFailed
  • The meeting failed to start.

    Declaration

    Swift

    case meetingStartFailed
  • The meeting will start.

    Declaration

    Swift

    case meetingStartRequested
  • The meeting started.

    Declaration

    Swift

    case meetingStartSucceeded
  • The meeting ended.

    Declaration

    Swift

    case meetingEnded
  • The meeting failed.

    Declaration

    Swift

    case meetingFailed
  • The meeting reconnected.

    Declaration

    Swift

    case meetingReconnected
  • unknown

    Declaration

    Swift

    case unknown
  • Declaration

    Swift

    public var description: String { get }