You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/includes/breakoutrooms/breakoutrooms-web.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ Event **breakoutRoomsUpdated** provides instance of one of the following classes
74
74
```
75
75
76
76
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"`.
78
78
```js
79
79
exportinterfaceJoinBreakoutRoomEvent {
80
80
/**
@@ -188,51 +188,51 @@ Breakout rooms have the following properties:
-`displayName` : Name of the breakout room. This is a read-only property.
191
+
-`displayName` : Name of the breakout room. This property is read-only.
192
192
193
193
```js
194
194
const threadId :string=breakoutRoom.threadId;
195
195
```
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.
197
197
198
198
```js
199
199
const state :BreakoutRoomState=breakoutRoom.state;
200
200
```
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.
-`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.
207
207
208
208
```js
209
209
const call :Call | TeamsCall=breakoutRoom.call;
210
210
```
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.
212
212
213
213
```js
214
214
const invitees :Invitee[] =breakoutRoom.invitees;
215
215
```
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.
217
217
218
218
### Breakout room settings
219
219
Breakout rooms share setting that has the following properties:
-`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.
|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. |
236
236
|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. |
237
237
|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. |
238
238
|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