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
| [CallComposite](#create-callcomposite) | Component that renders a call experience that has a participant gallery and controls |
149
149
| [CallCompositeOptions](#create-callcomposite) | Settings for options like themes and event handling |
150
-
|RemoteOptions|Remote options to send to AzureCommunicationServices to join a [group call](#set-up-a-group-call) or a [Teams meeting](#join-a-teams-meeting). |
151
150
| [ThemeOptions](#apply-theme-options) | Customization options for the composite theme |
152
151
| [LocalizationOptions](#apply-localization-options) | Language options for the composite |
153
152
@@ -205,7 +204,7 @@ You can also get the required meeting information from the **Join Meeting** URL
205
204
206
205
#### Join via Teams meeting URL
207
206
208
-
To join a Microsoft Teams meeting, inside the `startCallComposite` function, initialize a `RemoteOptions` instance for the `.teamsMeeting` locator. Replace `<TEAMS_MEETING_LINK>` with the Teams meeting link for your call. Replace `<DISPLAY_NAME>` with your name.
207
+
To join a Microsoft Teams meeting, inside the `startCallComposite` function, initialize a instance for the `.teamsMeeting` locator. Replace `<TEAMS_MEETING_LINK>` with the Teams meeting link for your call. Replace `<DISPLAY_NAME>` with your name.
209
208
210
209
```swift
211
210
let locator = .teamsMeeting(teamsLink: "<TEAMS_MEETING_LINK>")
@@ -218,10 +217,7 @@ A Teams meeting ID is 12 characters long and consists of numeric digits grouped
218
217
A passcode consists of 6 alphabet characters (i.e. `aBcDeF`). The passcode is case sensitive.
219
218
220
219
```swift
221
-
let remoteOptions = RemoteOptions(for: .teamsMeetingId(meetingId: "<TEAMS_MEETING_ID>", meetingPasscode: "<TEAMS_MEETING_PASSCODE>" ),
222
-
credential: communicationTokenCredential,
223
-
displayName: "<DISPLAY_NAME>")
224
-
220
+
let locator = .teamsMeetingId(meetingId: "<TEAMS_MEETING_ID>", meetingPasscode: "<TEAMS_MEETING_PASSCODE>" )
0 commit comments