addressId$

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

Observable of the participant’s address ID.

addressId

get addressId(): string | undefined

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

Examples

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