addressId$

View as MarkdownOpen in Claude
1get addressId$(): Observable<string | undefined>

Observable of the participant’s address ID.

Inherited from

Participant.addressId$

addressId

1get addressId(): string | undefined

Address ID of this participant, or undefined if not available.

Inherited from

Participant.addressId

Examples

1selfParticipant.addressId$.subscribe((addressId) => {
2 console.log('addressId:', addressId);
3});