interface Room {
    attendeeList: BoRoomAttendee[];
    name: string;
    roomId: string;
}

Properties

attendeeList: BoRoomAttendee[]

Participants in the room.

name: string

Room name.

roomId: string

Room ID.