addressId$

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

Observable of the participant’s address ID.

addressId

1get addressId(): string | undefined

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

Examples

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