File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
articles/communication-services/quickstarts/ui-library/includes/get-started-call Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -361,13 +361,26 @@ A passcode consists of 6 alphabet characters (i.e. `aBcDeF`). The passcode is ca
361
361
#### [ Kotlin] ( #tab/kotlin )
362
362
363
363
``` kotlin
364
- // HELP
364
+ val locator = CallCompositeTeamsMeetingIdLocator (" TEAMS_MEETING_ID" , " TEAMS_MEETING_PASSCODE" )
365
+
366
+ val remoteOptions = CallCompositeRemoteOptions (
367
+ locator,
368
+ communicationTokenCredential,
369
+ " DISPLAY_NAME" ,
370
+ )
371
+
365
372
```
366
373
367
374
#### [ Java] ( #tab/java )
368
375
369
376
``` java
370
- // HELP
377
+ CallCompositeJoinLocator locator = new CallCompositeTeamsMeetingLinkLocator (" TEAMS_MEETING_ID" , " TEAMS_MEETING_PASSCODE" );
378
+
379
+ CallCompositeRemoteOptions remoteOptions = new CallCompositeRemoteOptions (
380
+ locator,
381
+ communicationTokenCredential,
382
+ " DISPLAY_NAME" );
383
+
371
384
```
372
385
373
386
---
Original file line number Diff line number Diff line change @@ -224,8 +224,10 @@ A Teams meeting ID is 12 characters long and consists of numeric digits grouped
224
224
A passcode consists of 6 alphabet characters (i.e. ` aBcDeF` ). The passcode is case sensitive.
225
225
226
226
` ` ` swift
227
+ let remoteOptions = RemoteOptions(for: .teamsMeetingId(meetingId: "<TEAMS_MEETING_ID>", meetingPasscode: "<TEAMS_MEETING_PASSCODE>" ),
228
+ credential: communicationTokenCredential,
229
+ displayName: "<DISPLAY_NAME>")
227
230
228
- // HELP
229
231
` ` `
230
232
231
233
# ## Set up a Rooms call
You can’t perform that action at this time.
0 commit comments