Skip to content

Commit 76345ea

Browse files
Update breakoutrooms-web.md
1 parent 8dad8cb commit 76345ea

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/communication-services/how-tos/calling-sdk/includes/breakoutrooms/breakoutrooms-web.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Event **breakoutRoomsUpdated** provides instance of one of the following classes
7474
```
7575

7676

77-
4. Class `JoinBreakoutRoomsEvent` : This event is triggered when the participant is joining breakout room call. This can happen when user is automatically moved to breakout room (i.e., if `assignedBreakoutRoom` has property `state` set to `open` and `autoMoveParticipantToBreakoutRoom` is set to `true`) or when user explicitly joins breakout room (i.e., calls method `join` on the instance `assignedBreakoutRoom` when `autoMoveParticipantToBreakoutRoom` is set to `false`). Property `data` contains the breakout room `call` instance, that developers can use to control breakout room call. This class has property `type` equal to `"join"`.
77+
4. Class `JoinBreakoutRoomsEvent` : This event is triggered when the participant is joining breakout room call. This event can happen when user is automatically moved to breakout room (that is, if `assignedBreakoutRoom` has property `state` set to `open` and `autoMoveParticipantToBreakoutRoom` is set to `true`) or when user explicitly joins breakout room (that is, calls method `join` on the instance `assignedBreakoutRoom` when `autoMoveParticipantToBreakoutRoom` is set to `false`). Property `data` contains the breakout room `call` instance, that developers can use to control breakout room call. This class has property `type` equal to `"join"`.
7878
```js
7979
export interface JoinBreakoutRoomEvent {
8080
/**
@@ -188,51 +188,51 @@ Breakout rooms have the following properties:
188188
```js
189189
const displayName : string = breakoutRoom.displayName;
190190
```
191-
- `displayName` : Name of the breakout room. This is a read-only property.
191+
- `displayName` : Name of the breakout room. This property is read-only.
192192

193193
```js
194194
const threadId : string = breakoutRoom.threadId;
195195
```
196-
- `threadId` : You can use chat thread ID to join chat of the breakout room. This is a read-only property.
196+
- `threadId` : You can use chat thread ID to join chat of the breakout room. This property is read-only.
197197

198198
```js
199199
const state : BreakoutRoomState = breakoutRoom.state;
200200
```
201-
- `state` : State of the breakout room. It can be either `open` or `closed`. Users would be able to join the breakout room only when the state is `open`. This is a read-only property.
201+
- `state` : State of the breakout room. It can be either `open` or `closed`. Users would be able to join the breakout room only when the state is `open`. This property is read-only.
202202

203203
```js
204204
const autoMoveParticipantToBreakoutRoom : boolean = breakoutRoom.autoMoveParticipantToBreakoutRoom;
205205
```
206-
- `autoMoveParticipantToBreakoutRoom` : Boolean value which indicates whether the users are moved to breakout rooms automatically when the `state` of `assignedBreakoutRoom` is set to `open`. This is a read-only property.
206+
- `autoMoveParticipantToBreakoutRoom` : Boolean value, which indicates whether the users are moved to breakout rooms automatically when the `state` of `assignedBreakoutRoom` is set to `open`. This property is read-only.
207207

208208
```js
209209
const call : Call | TeamsCall = breakoutRoom.call;
210210
```
211-
- `call` : Breakout room call object. This is returned when the user joins the breakout room call automatically or by calling `join` method on `assignedBreakoutRoom` object. This is a read-only property.
211+
- `call` : Breakout room call object. This is returned when the user joins the breakout room call automatically or by calling `join` method on `assignedBreakoutRoom` object. This property is read-only.
212212

213213
```js
214214
const invitees : Invitee[] = breakoutRoom.invitees;
215215
```
216-
- `invitees` : The list of invitees who are assigned to the breakout room. This is a read-only property.
216+
- `invitees` : The list of invitees who are assigned to the breakout room. This property is read-only.
217217

218218
### Breakout room settings
219219
Breakout rooms share setting that has the following properties:
220220
```js
221221
const disableReturnToMainMeeting : boolean = breakoutRoomsSettings.disableReturnToMainMeeting;
222222
```
223-
- `disableReturnToMainMeeting` : Disable participants to return to the main meeting from the breakout room call. This is a read-only property.
223+
- `disableReturnToMainMeeting` : Disable participants to return to the main meeting from the breakout room call. This property is read-only.
224224

225225
```js
226226
const roomEndTime : TimestampInfo = breakoutRoomsSettings.roomEndTime;
227227
```
228-
- `roomEndTime`: Breakout room end time set by the Microsoft 365 user with role organizer, co-organizer, or breakout room manager of the main meeting. This is a read-only property.
228+
- `roomEndTime`: Breakout room end time set by the Microsoft 365 user with role organizer, co-organizer, or breakout room manager of the main meeting. This property is read-only.
229229

230230
### Troubleshooting
231231

232232
|Error code| Subcode | Result Category | Reason | Resolution |
233233
|----------------------------------------------|--------|--------|---------|----------|
234234
|400 | 46250 | ExpectedError | Breakout Rooms feature is only available in Teams meetings. | Implement your own breakout room mechanism or use Teams meetings. |
235-
|405 | 46251 | ExpectedError | Breakout Rooms feature is currently disabled by Azure Communication Services. | Try the APIs in a couple of days. |
235+
|405 | 46251 | ExpectedError | Azure Communication Services currently disabled this feature. | Try the APIs in a couple of days. |
236236
|500 | 46254 | UnexpectedServerError | Unable to join breakout room due to an unexpected error. | Ensure that the `state` of `assignedBreakoutRoom` is `open` and call `breakoutRoomsFeature.assignedBreakoutRoom.join()` method explicitly. If the issue persists, gather browser console logs and contact Azure Communication Services support. |
237237
|500| 46255 | UnexpectedServerError | Unable to hold main meeting. | Ensure that the `state` of `assignedBreakoutRoom` is `open` and call `breakoutRoomsFeature.assignedBreakoutRoom.join()` method explicitly. If the issue persists, gather browser console logs and contact Azure Communication Services support. |
238238
|412 | 46256| ExpectedError | Unable to join Breakout Room as the room is closed. | Ensure that the `state` of `assignedBreakoutRoom` is `open` and call `breakoutRoomsFeature.assignedBreakoutRoom.join()` method explicitly.|

0 commit comments

Comments
 (0)