RoomType

@objc
public enum RoomType : Int, RawRepresentable, Codable

An enum that represents different types of a room.

Since

1.6.0
  • Type of a room that supports audio and video, can have up to 6 participants.

    Since

    1.6.0

    Declaration

    Swift

    case smallRoomForVideo
  • Type of a room that only supports audio and can have up to 20 participants.

    Since

    1.6.0

    Declaration

    Swift

    case largeRoomForAudioOnly
  • Undocumented

    Declaration

    Swift

    public init(stringValue: String)
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws