addressId$

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

Observable of the participant’s address ID.

Inherited from

Participant.addressId$

addressId

get addressId(): string | undefined

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

Inherited from

Participant.addressId

Examples

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