Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
addressId$
1get addressId$(): Observable<string | undefined>
Observable of the participant’s address ID.
1get addressId(): string | undefined
Address ID of this participant, or undefined if not available.
undefined
1participant.addressId$.subscribe((addressId) => {2 console.log('addressId:', addressId);3});